allow 'deletion' of user

This commit is contained in:
2023-04-28 19:29:20 +02:00
parent c5741e8139
commit 055c330a3e
5 changed files with 36 additions and 6 deletions

View File

@ -4,7 +4,8 @@ CREATE TABLE IF NOT EXISTS "user" (
"pw" text,
"is_cox" boolean NOT NULL DEFAULT FALSE,
"is_admin" boolean NOT NULL DEFAULT FALSE,
"is_guest" boolean NOT NULL DEFAULT TRUE
"is_guest" boolean NOT NULL DEFAULT TRUE,
"deleted" boolean NOT NULL DEFAULT FALSE
);
CREATE TABLE IF NOT EXISTS "trip_details" (