From 09018e9526843334144d90c1891de2489148f85f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 2 Mar 2006 09:32:44 +0100 Subject: new option: SESSION_CHECK_ADDRESS --- schema/ttrss_schema_pgsql.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index c6bc45217..e393353a8 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -232,8 +232,9 @@ create table ttrss_scheduled_updates (id serial not null primary key, entered timestamp not null default NOW()); create table ttrss_sessions (id varchar(300) unique not null primary key, - data text, - expire integer not null); + data text, + expire integer not null, + ip_address varchar(15) not null default ''); create index ttrss_sessions_expire_index on ttrss_sessions(expire); -- cgit v1.2.3-54-g00ecf