CREATE TABLE users (
id SERIAL NOT NULL PRIMARY KEY,
name VARCHAR(128) NOT NULL UNIQUE,
discord_id BIGINT NOT NULL UNIQUE
);