mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-10 02:49:15 +00:00
update schema, new option: DATABASE_BACKED_SESSIONS
This commit is contained in:
@@ -231,12 +231,10 @@ create table ttrss_scheduled_updates (id serial not null primary key,
|
||||
feed_id integer default null references ttrss_feeds(id) ON DELETE CASCADE,
|
||||
entered timestamp not null default NOW());
|
||||
|
||||
create table ttrss_sessions (int_id serial not null primary key,
|
||||
id varchar(300) unique not null,
|
||||
data text,
|
||||
expire integer not null);
|
||||
create table ttrss_sessions (id varchar(300) unique not null primary key,
|
||||
data text,
|
||||
expire integer not null);
|
||||
|
||||
create index ttrss_sessions_id_index on ttrss_sessions(id);
|
||||
create index ttrss_sessions_expire_index on ttrss_sessions(expire);
|
||||
|
||||
commit;
|
||||
|
||||
Reference in New Issue
Block a user