twitch-bot/internal/actors/quotedb/schema/001.sql

8 lines
131 B
MySQL
Raw Normal View History

CREATE TABLE quotedb (
channel STRING NOT NULL,
created_at INTEGER,
quote STRING NOT NULL,
UNIQUE(channel, created_at)
);