This commit is contained in:
Matthieu Bessat 2024-12-04 18:25:56 +01:00
parent 23f12904cc
commit 0ad436f6a3
11 changed files with 32 additions and 14 deletions

View file

@ -5,7 +5,7 @@ CREATE TABLE users (
full_name TEXT,
email TEXT UNIQUE,
website TEXT,
picture BLOB,
avatar BLOB,
roles TEXT NOT NULL, -- json array of user roles
status TEXT CHECK(status IN ('Invited', 'Active', 'Disabled')) NOT NULL DEFAULT 'Disabled',