mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-01-20 23:56:21 +00:00
7 lines
217 B
SQL
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()
|
|
);
|