1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +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

@@ -7,7 +7,7 @@ update ttrss_entries set author = '';
alter table ttrss_entries alter column author set not null;
alter table ttrss_entries alter column author set default '';
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 '');