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

allow filtering by article tags (bump schema)

This commit is contained in:
Andrew Dolgov
2010-11-09 14:49:41 +03:00
parent c00907f2ed
commit c3fc5e470e
6 changed files with 130 additions and 92 deletions

View File

@@ -187,6 +187,7 @@ insert into ttrss_filter_types (id,name,description) values (4, 'link',
insert into ttrss_filter_types (id,name,description) values (5, 'date',
'Article Date');
insert into ttrss_filter_types (id,name,description) values (6, 'author', 'Author');
insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
create table ttrss_filter_actions (id integer not null primary key,
name varchar(120) unique not null,
@@ -243,7 +244,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
insert into ttrss_version values (70);
insert into ttrss_version values (71);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,

View File

@@ -169,6 +169,7 @@ insert into ttrss_filter_types (id,name,description) values (4, 'link',
insert into ttrss_filter_types (id,name,description) values (5, 'date',
'Article Date');
insert into ttrss_filter_types (id,name,description) values (6, 'author', 'Author');
insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
create table ttrss_filter_actions (id integer not null primary key,
name varchar(120) unique not null,
@@ -215,7 +216,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 (70);
insert into ttrss_version values (71);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,

View File

@@ -0,0 +1,3 @@
insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
update ttrss_version set schema_version = 71;

View File

@@ -0,0 +1,3 @@
insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
update ttrss_version set schema_version = 71;