mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-20 16:15:44 +00:00
7 lines
166 B
SQL
7 lines
166 B
SQL
create table "user"
|
|
(
|
|
user_id uuid primary key default gen_random_uuid(),
|
|
username text unique not null,
|
|
password_hash text not null
|
|
);
|