summaryrefslogtreecommitdiffstats
path: root/crates/auth-service/migrations/20250725160900_session.sql
blob: c5e76dc7745fdc07518f4fbf1ce7931a04081823 (plain)
1
2
3
4
5
6
7
8
-- Add migration script here
create schema if not exists "tower_sessions";

create table "tower_sessions"."session" (
    id text primary key not null,
    data bytea not null,
    expiry_date timestamptz not null
);