Files
softplayer-backend/migrations/20260506200734_accounts_init.up.sql
Nikolai Rodionov 33f48f2bfb
All checks were successful
ci/woodpecker/push/build Pipeline was successful
A lot of thigs are going on
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2026-05-10 23:14:29 +02:00

9 lines
330 B
SQL

CREATE TABLE IF NOT EXISTS accounts (
uuid UUID PRIMARY KEY,
email VARCHAR(255) NOT NULL
CHECK (email ~* '^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$') UNIQUE,
password_hash TEXT NOT NULL,
email_verified BOOLEAN NOT NULL DEFAULT FALSE,
created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP
);