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

new option: SESSION_CHECK_ADDRESS

This commit is contained in:
Andrew Dolgov
2006-03-02 09:32:44 +01:00
parent 8fd92701e9
commit 09018e9526
6 changed files with 34 additions and 9 deletions
+2 -1
View File
@@ -9,7 +9,8 @@ alter table ttrss_entries alter column author set default '';
create table ttrss_sessions (id varchar(300) unique not null primary key,
data text,
expire integer not null);
expire integer not null,
ip_address varchar(15) not null default '');
create index ttrss_sessions_id_index on ttrss_sessions(id);
create index ttrss_sessions_expire_index on ttrss_sessions(expire);