Add register validation

This commit is contained in:
Benjamin Sherriff
2023-10-18 22:52:59 -04:00
parent 616a43dba9
commit 0bda10c23b
2 changed files with 93 additions and 14 deletions

View File

@@ -3,5 +3,6 @@ CREATE TABLE IF NOT EXISTS users (
hash TEXT NOT NULL,
role TEXT NOT NULL,
first_name TEXT NOT NULL,
last_name TEXT NOT NULL
last_name TEXT NOT NULL,
verified BOOLEAN NOT NULL DEFAULT FALSE,
);