enlarge filters action_param field
This commit is contained in:
parent
11cd4db2a3
commit
91d64fb808
2 changed files with 2 additions and 2 deletions
|
@ -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),
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue