1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:15:55 +00:00

schema: updates for new filter format (bump version to 131)

This commit is contained in:
Andrew Dolgov
2017-07-02 20:59:24 +03:00
parent 57a1143c9d
commit 10a1f28f7c
5 changed files with 19 additions and 3 deletions

View File

@@ -246,6 +246,7 @@ create table ttrss_filters2_rules(id serial not null primary key,
filter_type integer not null references ttrss_filter_types(id),
feed_id integer references ttrss_feeds(id) on delete cascade default null,
cat_id integer references ttrss_feed_categories(id) on delete cascade default null,
match_on text,
cat_filter boolean not null default false);
create table ttrss_filters2_actions(id serial not null primary key,
@@ -263,7 +264,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 (130);
insert into ttrss_version values (131);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,