mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-14 11:02:43 +00:00
8 lines
131 B
MySQL
8 lines
131 B
MySQL
|
CREATE TABLE quotedb (
|
||
|
channel STRING NOT NULL,
|
||
|
created_at INTEGER,
|
||
|
quote STRING NOT NULL,
|
||
|
|
||
|
UNIQUE(channel, created_at)
|
||
|
);
|