miniflux-v2/sql/schema_version_10.sql

8 lines
177 B
MySQL
Raw Permalink Normal View History

2017-12-17 03:07:53 +01:00
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)
);