aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/schema.sql b/sql/schema.sql
index a6efc39..92ae605 100644
--- a/sql/schema.sql
+++ b/sql/schema.sql
@@ -39,7 +39,7 @@ CREATE TABLE mailing_list_emails (
CREATE TABLE users (
id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
username TEXT UNIQUE,
- type TEXT NOT NULL CHECK (type IN ('pubkey_only', 'federated', 'registered')),
+ type TEXT NOT NULL CHECK (type IN ('pubkey_only', 'federated', 'registered', 'admin')),
password TEXT
);