X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=schema%2Fttrss_schema_pgsql.sql;h=c977cf0bffe10108e4cb152c2c99a76a6db84ada;hb=5e736e4592d27107d69d9b7fbd19ae91b209956e;hp=711a35968ebc6976f6f6f47338f5fc78cef38954;hpb=133420aa8d9bb2e30775e50f37738d628fc8f42c;p=tt-rss.git diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 711a3596..c977cf0b 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -219,6 +219,9 @@ insert into ttrss_filter_actions (id,name,description) values (6, 'score', insert into ttrss_filter_actions (id,name,description) values (7, 'label', 'Assign label'); +insert into ttrss_filter_actions (id,name,description) values (8, 'stop', + 'Stop / Do nothing'); + create table ttrss_filters2(id serial not null primary key, owner_uid integer not null references ttrss_users(id) on delete cascade, match_any_rule boolean not null default false, @@ -251,7 +254,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id); create table ttrss_version (schema_version int not null); -insert into ttrss_version values (112); +insert into ttrss_version values (113); create table ttrss_enclosures (id serial not null primary key, content_url text not null,