NotParcel/migrations/001_generate_user_table.sql
2024-12-30 11:37:46 -07:00

7 lines
217 B
SQL

CREATE TABLE IF NOT EXISTS users (
robloxId BIGINT PRIMARY KEY,
discordId BIGINT DEFAULT NULL,
pairingCode VARCHAR(6) DEFAULT NULL,
discordDisplayName VARCHAR(48) DEFAULT 'Unknown',
UNIQUE (robloxId, discordId)
)