mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-07 01:34:35 +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
|
|
);
|