diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2007-08-20 03:47:04 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2007-08-20 03:47:04 +0100 |
| commit | 91d64fb808306f4409c4cf8a1405d58f6202a20f (patch) | |
| tree | efc7a9bce520b76a42885b2b472f0ca31e2ca7f9 | |
| parent | 11cd4db2a3f259b97b1868c7de4dd5d4cdbe61df (diff) | |
enlarge filters action_param field
| -rw-r--r-- | schema/ttrss_schema_mysql.sql | 2 | ||||
| -rw-r--r-- | schema/ttrss_schema_pgsql.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index f1a001db8..90defe1a8 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -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), diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 7550cadcd..abf74b7ed 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -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, |