This commit is contained in:
2024-09-24 22:19:55 +02:00
parent 70d4e9ca20
commit 8b09406339
5 changed files with 81 additions and 11 deletions

View File

@@ -2,8 +2,7 @@ CREATE TABLE IF NOT EXISTS users
(
id INTEGER PRIMARY KEY NOT NULL,
username TEXT NOT NULL,
salt text NOT NULL,
hash TEXT NOT NULL,
saltyhash text NOT NULL,
permissions INTEGER DEFAULT 0,
token TEXT
token TEXT NOT NULL
)