microtld/web/migrations/20260820090931_create_users.up.sql
2026-08-21 12:24:52 +02:00

13 lines
644 B
SQL

-- Add up migration script here
CREATE TABLE users (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
username TEXT UNIQUE NOT NULL,
email TEXT UNIQUE NOT NULL,
email_confirmed_at TIMESTAMPTZ,
password_reset_requested_at TIMESTAMPTZ,
password_hash TEXT NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now(),
settings_unlocked_at TIMESTAMPTZ,
two_factor_secret TEXT
);