Files
greenlight/migrations/000004_create_user_table.up.sql
lbenedar eb6995eebd ch13.1
2026-03-19 16:04:04 +03:00

9 lines
294 B
SQL

CREATE TABLE IF NOT EXISTS users (
id bigserial PRIMARY KEY,
created_at timestamp(0) with time zone NOT NULL DEFAULT NOW(),
name text NOT NULL,
email citext UNIQUE NOT NULL,
password_hash bytea NOT NULL,
activated bool NOT NULL,
version integer NOT NULL DEFAULT 1
);