mirror of
https://github.com/miniflux/v2.git
synced 2025-07-22 17:18:37 +00:00
Session management refactoring
This commit is contained in:
parent
58acd1d5e3
commit
00257988ef
26 changed files with 465 additions and 276 deletions
8
sql/schema_version_10.sql
Normal file
8
sql/schema_version_10.sql
Normal file
|
@ -0,0 +1,8 @@
|
|||
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)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue