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