Finally finished the massive refactor... transitions still broke but it's fine for now.
This commit is contained in:
7
private/database/queries/create/CreateTeamsTable.sql
Normal file
7
private/database/queries/create/CreateTeamsTable.sql
Normal file
@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS "Teams" (
|
||||
"id" BIGSERIAL NOT NULL PRIMARY KEY,
|
||||
"name" varchar(32) NOT NULL UNIQUE,
|
||||
"motto" text NULL,
|
||||
"image" text NULL,
|
||||
"registered" TIMESTAMP NOT NULL
|
||||
);
|
Reference in New Issue
Block a user