mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2025-01-06 11:46:01 +00:00
10 lines
208 B
MySQL
10 lines
208 B
MySQL
|
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);
|