mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-26 01:31:29 +00:00
ttrss_filters: add action_param field, bump schema version
This commit is contained in:
@@ -146,7 +146,8 @@ create table ttrss_filters (id serial not null primary key,
|
||||
filter_type integer not null references ttrss_filter_types(id),
|
||||
reg_exp varchar(250) not null,
|
||||
enabled boolean not null default true,
|
||||
action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade);
|
||||
action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
|
||||
action_param varchar(200) 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,
|
||||
@@ -170,7 +171,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
|
||||
|
||||
create table ttrss_version (schema_version int not null);
|
||||
|
||||
insert into ttrss_version values (11);
|
||||
insert into ttrss_version values (12);
|
||||
|
||||
create table ttrss_prefs_types (id integer not null primary key,
|
||||
type_name varchar(100) not null);
|
||||
|
||||
Reference in New Issue
Block a user