This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/api/migrations/002_users.sql
Tim 0df0e7f6f9
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Failing after 59s
#73 setup password hashing with argin2id and update some infra
2024-08-10 00:14:38 +02:00

15 lines
248 B
SQL

CREATE TABLE user (
user_uuid TEXT NOT NULL UNIQUE PRIMARY KEY,
email TEXT NOT NULL,
email_verified BOOLEAN NOT NULL,
is_admin BOOLEAN NOT NULL,
password BLOB NOT NULL,
salt BLOB NOT NULL,
created_at DATETIME NOT NULL,
) WITHOUT ROWID;