Finally finished the massive refactor... transitions still broke but it's fine for now.
This commit is contained in:
6
private/database/queries/create/CreateUsersTable.sql
Normal file
6
private/database/queries/create/CreateUsersTable.sql
Normal file
@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS "Users" (
|
||||
"id" BIGSERIAL NOT NULL PRIMARY KEY,
|
||||
"discordId" text NULL UNIQUE,
|
||||
"steamId" text NULL UNIQUE,
|
||||
"email" text NULL UNIQUE
|
||||
);
|
Reference in New Issue
Block a user