aboutsummaryrefslogtreecommitdiffhomepage
path: root/database/sql/schema_version_10.sql
blob: abd26d878a2e0061412eededba3a3dfcc5d7f89c (plain)
1
2
3
4
5
6
7
8
drop table tokens;

create table sessions (
    id text not null,
    data jsonb not null,
    created_at timestamp with time zone not null default now(),
    primary key(id)
);