mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
8 lines
No EOL
177 B
SQL
8 lines
No EOL
177 B
SQL
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)
|
|
); |