1
0
Fork 0
miniflux/sql/schema_version_10.sql

8 lines
177 B
MySQL
Raw Normal View History

2017-12-16 21:07:53 -05: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)
);