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

add necessary schema plumbing to implement filter ordering

also add filter titles
This commit is contained in:
Andrew Dolgov
2013-03-31 16:14:42 +04:00
parent b6173bd561
commit 8e8c8934a9
5 changed files with 38 additions and 4 deletions

View File

@@ -223,6 +223,8 @@ 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,
inverse boolean not null default false,
title varchar(250) not null default '',
order_id integer not null default 0,
enabled boolean not null default true);
create table ttrss_filters2_rules(id serial not null primary key,
@@ -249,7 +251,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 (111);
insert into ttrss_version values (112);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,