diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-22 00:55:17 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-22 00:55:17 -0800 |
| commit | 02e1e6ad3a4ca2a52e1045b5ed62858e55d8159b (patch) | |
| tree | 9da0d0881a9161f1bde856c03f37f1558cc37cc5 | |
| parent | 77aa377a3231e402d80a153074b237fa7d4773fa (diff) | |
fix: add missing historical column and headers
| -rw-r--r-- | backend/sql_table_config.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/sql_table_config.json b/backend/sql_table_config.json index 8477fbf..e77ff10 100644 --- a/backend/sql_table_config.json +++ b/backend/sql_table_config.json @@ -3,5 +3,7 @@ "LIVE_HEADER": "channel_id, profile_pic, name, subscriber_count, suborg, video_count, timestamp", "DAILY_COLUMNS": "id INT PRIMARY KEY AUTO_INCREMENT, channel_id VARCHAR(255), sub_diff INT", "DAILY_HEADER": "channel_id, sub_diff", + "HISTORICAL_COLUMNS": "id INT PRIMARY KEY AUTO_INCREMENT, channel_id VARCHAR(255), profile_pic VARCHAR(255), name VARCHAR(255), subscriber_count INT, timestamp DATETIME", + "HISTORICAL_HEADER": "channel_id, profile_pic, name, subscriber_count, timestamp", "HOLODEX_ORGS": "Nijisanji" } |
