taskcafe/api/migrations/0002_add-users-table.up.sql
2020-04-09 21:40:22 -05:00

9 lines
244 B
SQL

CREATE TABLE user_account (
user_id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
created_at timestamptz NOT NULL,
display_name text NOT NULL,
email text NOT NULL UNIQUE,
username text NOT NULL UNIQUE,
password_hash text NOT NULL
);