mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-03 15:55:45 +00:00
6 lines
119 B
SQL
6 lines
119 B
SQL
create table "user"
|
|
(
|
|
user_id uuid primary key default uuid_generate_v1mc(),
|
|
username text unique not null
|
|
);
|