schema_version_10.sql 177 B

12345678
  1. drop table tokens;
  2. create table sessions (
  3. id text not null,
  4. data jsonb not null,
  5. created_at timestamp with time zone not null default now(),
  6. primary key(id)
  7. );