Add password hashing

This commit is contained in:
2025-08-17 10:40:09 +02:00
parent 0e29910197
commit 2196ef06eb
15 changed files with 97 additions and 986 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
CREATE TABLE IF NOT EXISTS Users (
id INTEGER PRIMARY KEY,
username TEXT NOT NULL UNIQUE,
password TEXT NOT NULL,
hash TEXT NOT NULL,
email TEXT NOT NULL UNIQUE,
signup_time DATETIME DEFAULT CURRENT_TIMESTAMP
);