mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-01-16 21:51:26 +00:00
11 lines
295 B
SQL
11 lines
295 B
SQL
create table account
|
|
(
|
|
account_id uuid primary key default gen_random_uuid(),
|
|
email text unique not null,
|
|
password_hash text not null,
|
|
created_at timestamptz not null default now(),
|
|
updated_at timestamptz
|
|
);
|
|
|
|
select trigger_updated_at('account');
|