From a2e9b4575926fe6a92d2b9976195d42618deeb55 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 27 Mar 2006 17:23:50 +0100 Subject: obsolete ip_address field in ttrss_sessions --- schema/ttrss_schema_mysql.sql | 1 - schema/ttrss_schema_pgsql.sql | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'schema') diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 7f96362b8..cb616f333 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -263,7 +263,6 @@ create table ttrss_scheduled_updates (id integer not null primary key auto_incre create table ttrss_sessions (id varchar(250) unique not null primary key, data text, expire integer not null, - ip_address varchar(15) not null default '', index (id), index (expire)) TYPE=InnoDB; diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 82c5506a6..c9dfe0205 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -239,8 +239,7 @@ create table ttrss_scheduled_updates (id serial not null primary key, create table ttrss_sessions (id varchar(250) unique not null primary key, data text, - expire integer not null, - ip_address varchar(15) not null default ''); + expire integer not null); create index ttrss_sessions_expire_index on ttrss_sessions(expire); -- cgit v1.2.3-54-g00ecf