1
0
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:
Andrew Dolgov
2005-09-08 10:35:05 +01:00
parent 7f4bd25627
commit a82065a18b
2 changed files with 4 additions and 4 deletions

View File

@@ -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');