]> git.wh0rd.org Git - tt-rss.git/commitdiff
schema fixes
authorAndrew Dolgov <fox@bah.spb.su>
Sun, 18 Jan 2009 10:46:28 +0000 (11:46 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sun, 18 Jan 2009 10:46:28 +0000 (11:46 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index 9bfb0a075f0bb457852316575d0c8e917b3ea90f..8ba72e8f488c4de5bc0ded1f1b9c28cb625d1c07 100644 (file)
@@ -1,6 +1,8 @@
 -- SET NAMES utf8;
 -- SET CHARACTER SET utf8;
 
+drop table if exists ttrss_user_labels2;
+drop table if exists ttrss_labels2;
 drop table if exists ttrss_feedbrowser_cache;
 drop table if exists ttrss_version;
 drop table if exists ttrss_labels;
@@ -398,6 +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');
+
 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,
index 9778a044f860d2931a3b7513bb19e6f684434625..6c7f9d98a3ad05747fa5a6862c2b65b57c998be5 100644 (file)
@@ -368,6 +368,12 @@ create table ttrss_labels2 (id serial not null primary key,
        caption varchar(250) not null
 );
 
+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 references ttrss_labels2(id) ON DELETE CASCADE,
        article_id integer not null references ttrss_entries(id) ON DELETE CASCADE