mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 10:55:56 +00:00
virtual feeds (labels) support
This commit is contained in:
@@ -60,4 +60,15 @@ create table ttrss_filters (id integer primary key auto_increment,
|
||||
reg_exp varchar(250) not null,
|
||||
description varchar(250) not null default '') TYPE=InnoDB;
|
||||
|
||||
drop table ttrss_labels;
|
||||
|
||||
create table ttrss_labels (id integer primary key auto increment,
|
||||
sql_exp varchar(250) not null,
|
||||
description varchar(250) not null);
|
||||
|
||||
insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
|
||||
'Example Label');
|
||||
|
||||
insert into ttrss_labels (sql_exp,description) values ('unread = true',
|
||||
'Unread articles');
|
||||
|
||||
|
||||
@@ -59,3 +59,15 @@ create table ttrss_filters (id serial primary key,
|
||||
reg_exp varchar(250) not null,
|
||||
description varchar(250) not null default '');
|
||||
|
||||
drop table ttrss_labels;
|
||||
|
||||
create table ttrss_labels (id serial primary key,
|
||||
sql_exp varchar(250) not null,
|
||||
description varchar(250) not null);
|
||||
|
||||
insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
|
||||
'Example Label');
|
||||
|
||||
insert into ttrss_labels (sql_exp,description) values ('unread = true',
|
||||
'Unread articles');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user