summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-08 08:43:44 +0100
committerAndrew Dolgov <[email protected]>2005-09-08 08:43:44 +0100
commit48f0adb02e8aacfc5850fd6ec2f15a9fb1af7561 (patch)
tree54e2415464a16c4f5fc094869fce93cc0bc613db /schema/ttrss_schema_mysql.sql
parent7bb699de1c568c23c1f102f4b9396d8294dfc242 (diff)
virtual feeds (labels) support
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 348cb2421..b7267e3b7 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -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');