oidc stuff

This commit is contained in:
nora 2025-07-13 15:37:29 +02:00
parent 4d7a2be572
commit 30c49c3795
12 changed files with 538 additions and 6 deletions

View file

@ -2,6 +2,6 @@ CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT, -- ensure no IDs are reused
username TEXT NOT NULL UNIQUE,
password TEXT NOT NULL
);
) STRICT;
CREATE INDEX users_username ON users(username);