sqlx/tests/postgres/migrations/1_user.sql
2022-08-02 14:38:12 -07:00

5 lines
119 B
SQL

create table "user"
(
user_id uuid primary key default uuid_generate_v1mc(),
username text unique not null
);