mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-14 02:52:42 +00:00
9 lines
208 B
SQL
9 lines
208 B
SQL
CREATE TABLE overlays_events (
|
|
channel STRING NOT NULL,
|
|
created_at INTEGER,
|
|
event_type STRING,
|
|
fields STRING
|
|
);
|
|
|
|
CREATE INDEX overlays_events_sort_idx
|
|
ON overlays_events (channel, created_at DESC);
|