From 04febb0429adb24da43ac33bc6d925d450e10b60 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 2 Mar 2006 13:15:28 +0100 Subject: shrink session id length in db --- schema/ttrss_schema_pgsql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'schema/ttrss_schema_pgsql.sql') diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index e393353a8..8db25bd61 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -231,7 +231,7 @@ create table ttrss_scheduled_updates (id serial not null primary key, feed_id integer default null references ttrss_feeds(id) ON DELETE CASCADE, entered timestamp not null default NOW()); -create table ttrss_sessions (id varchar(300) unique 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 ''); -- cgit v1.2.3-54-g00ecf