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

7 lines
217 B
SQL

create table session
(
session_token text primary key, -- random alphanumeric string
account_id uuid not null references account (account_id),
created_at timestamptz not null default now()
);