summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-02 09:32:44 +0100
committerAndrew Dolgov <[email protected]>2006-03-02 09:32:44 +0100
commit09018e9526843334144d90c1891de2489148f85f (patch)
treef8cb246596ec592cb10cdc0ddd92ed44e792f8e7 /schema/ttrss_schema_pgsql.sql
parent8fd92701e9074b79a72982809a6a87f8e943399a (diff)
new option: SESSION_CHECK_ADDRESS
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql5
1 files changed, 3 insertions, 2 deletions
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);