fix ci
This commit is contained in:
@ -7,7 +7,12 @@ CREATE TABLE IF NOT EXISTS "user" (
|
||||
"is_guest" boolean NOT NULL DEFAULT TRUE,
|
||||
"is_tech" boolean NOT NULL DEFAULT FALSE,
|
||||
"deleted" boolean NOT NULL DEFAULT FALSE,
|
||||
"last_access" DATETIME
|
||||
"last_access" DATETIME,
|
||||
"dob" text,
|
||||
"weight" text,
|
||||
"sex" text,
|
||||
"dirty_thirty" text,
|
||||
"dirty_dozen" text
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS "trip_type" (
|
||||
@ -115,10 +120,3 @@ CREATE TABLE IF NOT EXISTS "boat_damage" (
|
||||
"verified_at" datetime,
|
||||
"lock_boat" boolean not null default false -- if true: noone can use the boat
|
||||
);
|
||||
|
||||
-- tmp ergo challenge stuff
|
||||
ALTER TABLE user ADD COLUMN dob text;
|
||||
ALTER TABLE user ADD COLUMN weight text;
|
||||
ALTER TABLE user ADD COLUMN sex text;
|
||||
ALTER TABLE user ADD COLUMN dirty_thirty text;
|
||||
ALTER TABLE user ADD COLUMN dirty_dozen text;
|
||||
|
Reference in New Issue
Block a user