1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-09 00:21:33 +00:00

add interface/schema for inverse matching filters

This commit is contained in:
Andrew Dolgov
2007-01-30 17:23:35 +01:00
parent 8011ac363a
commit 3f2ff803b3
9 changed files with 54 additions and 9 deletions

View File

@@ -154,6 +154,7 @@ create table ttrss_filters (id integer not null primary key auto_increment,
feed_id integer default null,
filter_type integer not null,
reg_exp varchar(250) not null,
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 '',
@@ -190,7 +191,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
insert into ttrss_version values (12);
insert into ttrss_version values (13);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null) TYPE=InnoDB;