taskcafe/api/migrations/0002_add-users-table.up.sql

9 lines
244 B
MySQL
Raw Normal View History

2020-04-10 04:40:22 +02:00
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
);