Add user accounting

This commit is contained in:
2026-08-27 00:10:53 +03:00
parent ce70b7322f
commit b3ea30e807
6 changed files with 105 additions and 16 deletions
+1
View File
@@ -91,6 +91,7 @@ CREATE TABLE IF NOT EXISTS app_users (
can_read BOOLEAN NOT NULL DEFAULT TRUE,
can_add BOOLEAN NOT NULL DEFAULT FALSE,
can_delete BOOLEAN NOT NULL DEFAULT FALSE,
password_hash TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);