forked from Ruderverein-Donau-Linz/rowt
add last_access column for user table
This commit is contained in:
@ -5,7 +5,8 @@ CREATE TABLE IF NOT EXISTS "user" (
|
||||
"is_cox" boolean NOT NULL DEFAULT FALSE,
|
||||
"is_admin" boolean NOT NULL DEFAULT FALSE,
|
||||
"is_guest" boolean NOT NULL DEFAULT TRUE,
|
||||
"deleted" boolean NOT NULL DEFAULT FALSE
|
||||
"deleted" boolean NOT NULL DEFAULT FALSE,
|
||||
"last_access" DATETIME
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS "trip_type" (
|
||||
|
Reference in New Issue
Block a user