summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-02 13:15:28 +0100
committerAndrew Dolgov <[email protected]>2006-03-02 13:15:28 +0100
commit04febb0429adb24da43ac33bc6d925d450e10b60 (patch)
tree1ac3f2598dde0a97a2a65cce8007942b5d17dd96 /schema/ttrss_schema_pgsql.sql
parent9f3a7455689982f1c83c117f7f25396a8af687af (diff)
shrink session id length in db
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql2
1 files changed, 1 insertions, 1 deletions
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 '');