]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_mysql.sql
display article labels in headlines buffer
[tt-rss.git] / schema / ttrss_schema_mysql.sql
index 8ba72e8f488c4de5bc0ded1f1b9c28cb625d1c07..11b2106e09013b27ceb336bd2d0a0a15dce253ba 100644 (file)
@@ -400,12 +400,12 @@ create table ttrss_labels2 (id integer not null primary key auto_increment,
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
 ) TYPE=InnoDB;
 
-INSERT INTO ttrss_labels2 (owner_uid, caption) VALUES (1, 'All Articles');
-
-INSERT INTO ttrss_filters (owner_uid, feed_id, filter_type, reg_exp, enabled, 
-    action_id, action_param, filter_param) 
-    VALUES (1, NULL, 1, '.', true, 7, 'All Articles', 'before');
-
+--INSERT INTO ttrss_labels2 (owner_uid, caption) VALUES (1, 'All Articles');
+--
+--INSERT INTO ttrss_filters (owner_uid, feed_id, filter_type, reg_exp, enabled, 
+--    action_id, action_param, filter_param) 
+--    VALUES (1, NULL, 1, '.', true, 7, 'All Articles', 'before');
+--
 create table ttrss_user_labels2 (label_id integer not null,
        article_id integer not null,
        foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,