]> git.wh0rd.org - tt-rss.git/commitdiff
mysql schema: remove commented stuff (closes #229)
authorAndrew Dolgov <fox@bah.org.ru>
Fri, 6 Feb 2009 14:14:20 +0000 (17:14 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Fri, 6 Feb 2009 14:14:20 +0000 (17:14 +0300)
schema/ttrss_schema_mysql.sql

index f91e09ea5958b051cfc2b70c2c85f48deb90a83d..54a6dc654607c838d12c7ffea64f7f7cb6eb8480 100644 (file)
@@ -390,12 +390,6 @@ 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');
---
 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,