1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 12:39:15 +00:00

shrink session id length in db

This commit is contained in:
Andrew Dolgov
2006-03-02 13:15:28 +01:00
parent 9f3a745568
commit 04febb0429
4 changed files with 5 additions and 5 deletions

View File

@@ -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 '');