1
Fork 0
shimmeringmoon/migrations/01-create-users-table/up.sql

10 lines
240 B
SQL

-- {{{ users
create table IF NOT EXISTS users (
id INTEGER NOT NULL PRIMARY KEY,
discord_id TEXT UNIQUE NOT NULL,
private_server_id INTEGER,
is_pookie BOOL NOT NULL DEFAULT 0,
is_admin BOOL NOT NULL DEFAULT 0
);
-- }}}