aboutsummaryrefslogtreecommitdiff
path: root/migrations/deploy/sessions.sql
blob: 6d0122c565b89e723ff612c87e57fff688b939f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Deploy byspel:sessions to sqlite
-- requires: users

BEGIN;

create table sessions(
  session_id uuid not null primary key,
  user_id uuid not null,
  expires timestamp not null,
  foreign key (user_id) references users(id) on delete cascade
);

COMMIT;