mirror-nourybot/migrations/000001_create_channels_table.up.sql
2022-08-08 23:58:10 +02:00

7 lines
214 B
SQL

CREATE TABLE IF NOT EXISTS channels (
id bigserial PRIMARY KEY,
joined_at timestamp(0) with time zone NOT NULL DEFAULT NOW(),
login text NOT NULL,
twitchid text NOT NULL,
announce BOOLEAN NOT NULL
);