summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.3-1.1.4-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/upgrade-1.1.3-1.1.4-pgsql.sql
parent8fd92701e9074b79a72982809a6a87f8e943399a (diff)
new option: SESSION_CHECK_ADDRESS
Diffstat (limited to 'schema/upgrade-1.1.3-1.1.4-pgsql.sql')
-rw-r--r--schema/upgrade-1.1.3-1.1.4-pgsql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/upgrade-1.1.3-1.1.4-pgsql.sql b/schema/upgrade-1.1.3-1.1.4-pgsql.sql
index d1d310f3d..0191d6ede 100644
--- a/schema/upgrade-1.1.3-1.1.4-pgsql.sql
+++ b/schema/upgrade-1.1.3-1.1.4-pgsql.sql
@@ -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);