mirror-nourybot/migrations/000001_create_channels_table.up.sql

7 lines
214 B
MySQL
Raw Normal View History

2022-08-08 23:58:10 +02:00
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
);