summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-02-06 17:14:20 +0300
committerAndrew Dolgov <[email protected]>2009-02-06 17:14:20 +0300
commit5bce01af9a43a6492e0f6981edf39794f4133ecc (patch)
treea7624ce837cd94401d0ef2e1c9e6895f10230631
parent2fe5a11769f1cd85db9ca99fce2c6928bd5f0ff8 (diff)
mysql schema: remove commented stuff (closes #229)
-rw-r--r--schema/ttrss_schema_mysql.sql6
1 files changed, 0 insertions, 6 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index f91e09ea5..54a6dc654 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -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,