Updated user scheme

Forgot password and username
This commit is contained in:
2026-04-24 17:49:52 +02:00
parent b94a94a28e
commit fe04483e76
2 changed files with 25 additions and 0 deletions

View File

@@ -2,5 +2,7 @@ CREATE TABLE users (
id SMALLINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
name VARCHAR(30),
firstname VARCHAR(30),
username VARCHAR(30),
passwd TEXT,
is_admin BOOLEAN NOT NULL DEFAULT false
);