mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:25:56 +00:00
no entries found -> no articles found
This commit is contained in:
@@ -60,11 +60,11 @@ 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;
|
||||
drop table if exists ttrss_labels;
|
||||
|
||||
create table ttrss_labels (id integer primary key auto increment,
|
||||
create table ttrss_labels (id integer primary key auto_increment,
|
||||
sql_exp varchar(250) not null,
|
||||
description varchar(250) not null);
|
||||
description varchar(250) not null) TYPE=InnoDB;
|
||||
|
||||
insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
|
||||
'Example Label');
|
||||
|
||||
Reference in New Issue
Block a user