1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

update schema, new option: DATABASE_BACKED_SESSIONS

This commit is contained in:
Andrew Dolgov
2006-03-02 09:20:02 +01:00
parent 36bfab86c2
commit 8fd92701e9
6 changed files with 17 additions and 14 deletions
+3 -4
View File
@@ -7,10 +7,9 @@ update ttrss_entries set author = '';
alter table ttrss_entries alter column author set not null;
alter table ttrss_entries alter column author set default '';
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);