add last_access column for user table

This commit is contained in:
2023-05-10 08:57:20 +02:00
parent dab396640b
commit 8c38a2faf6
2 changed files with 19 additions and 4 deletions

View File

@ -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" (