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.up.sql
Tim 21d39ff606
Some checks failed
Build Docker Image / Explore-Gitea-Actions (push) Failing after 1m0s
#73 implement PostSignup serverside
2024-08-11 18:31:40 +02:00

15 lines
254 B
SQL

CREATE TABLE user (
user_uuid TEXT NOT NULL UNIQUE PRIMARY KEY,
email TEXT NOT NULL UNIQUE,
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;