]> git.wh0rd.org - tt-rss.git/commitdiff
enlarge filters action_param field
authorAndrew Dolgov <fox@madoka.spb.ru>
Mon, 20 Aug 2007 02:47:04 +0000 (03:47 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Mon, 20 Aug 2007 02:47:04 +0000 (03:47 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index f1a001db800c0e9c770120030c0c3d353372947b..90defe1a8dbdcdb93502567fda10f44011a36bd6 100644 (file)
@@ -159,7 +159,7 @@ create table ttrss_filters (id integer not null primary key auto_increment,
        inverse bool not null default false,
        enabled bool not null default true,
        action_id integer not null default 1,
-       action_param varchar(200) not null default '',
+       action_param varchar(250) not null default '',
        index (filter_type),
        foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,
        index (owner_uid),
index 7550cadcd26e6859418a92a6467ea6e07692b27d..abf74b7ed9fd70635749b3eea608b7eaabbdedd4 100644 (file)
@@ -153,7 +153,7 @@ create table ttrss_filters (id serial not null primary key,
        enabled boolean not null default true,
        inverse boolean not null default false,
        action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
-       action_param varchar(200) not null default '');
+       action_param varchar(250) not null default '');
 
 create table ttrss_labels (id serial not null primary key, 
        owner_uid integer not null references ttrss_users(id) on delete cascade,