Austin Bonander 46878e8c0b feat: multi-tenant example
No longer Axum-based because filling out the request routes would have distracted from the purpose of the example.
2025-02-27 16:20:09 -08:00

7 lines
235 B
SQL

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