2025-04-10 19:39:07 -07:00

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');