]> git.wh0rd.org Git - tt-rss.git/commitdiff
add ttrss_archived_feeds (MODIFY SCHEMA v60)
authorAndrew Dolgov <fox@bah.org.ru>
Mon, 28 Dec 2009 16:15:15 +0000 (19:15 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Mon, 28 Dec 2009 16:15:15 +0000 (19:15 +0300)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql
schema/versions/mysql/60.sql
schema/versions/pgsql/60.sql

index c6de602878d480ed2255db022b82e3467c5d0eeb..68611c94e13c890cbf25afafdf536177f3b4dbac 100644 (file)
@@ -22,6 +22,7 @@ drop table if exists ttrss_scheduled_updates;
 drop table if exists ttrss_counters_cache;
 drop table if exists ttrss_cat_counters_cache;
 drop table if exists ttrss_feeds;
+drop table if exists ttrss_archived_feeds;
 drop table if exists ttrss_feed_categories;
 drop table if exists ttrss_users;
 drop table if exists ttrss_themes;
@@ -62,6 +63,14 @@ create table ttrss_feed_categories(id integer not null primary key auto_incremen
        index(owner_uid),
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
 
+create table ttrss_archived_feeds (id integer not null primary key,
+       owner_uid integer not null,
+       title varchar(200) not null, 
+       feed_url text not null, 
+       site_url varchar(250) not null default '',
+       index(owner_uid),
+       foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
+
 create table ttrss_counters_cache (
        feed_id integer not null,
        owner_uid integer not null,
@@ -147,7 +156,7 @@ create table ttrss_user_entries (
        index (feed_id),
        foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
        index (orig_feed_id),
-       foreign key (orig_feed_id) references ttrss_feeds(id) ON DELETE SET NULL,
+       foreign key (orig_feed_id) references ttrss_archived_feeds(id) ON DELETE SET NULL,
        index (owner_uid),
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
 
index 7afebb5d97579113702e90cdc345794cdc4b4e9d..f2b0e808dd5b61b78d3ea41d7ec595735235f5d3 100644 (file)
@@ -18,6 +18,7 @@ drop table ttrss_entries;
 drop table ttrss_scheduled_updates;
 drop table ttrss_counters_cache;
 drop table ttrss_cat_counters_cache;
+drop table ttrss_archived_feeds;
 drop table ttrss_feeds;
 drop table ttrss_feed_categories;
 drop table ttrss_users;
@@ -89,6 +90,12 @@ insert into ttrss_feeds (owner_uid, title, feed_url) values
 insert into ttrss_feeds (owner_uid, title, feed_url) values 
        (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.spb.ru/forum/rss.php');
 
+create table ttrss_archived_feeds (id integer not null primary key,
+       owner_uid integer not null references ttrss_users(id) on delete cascade,
+       title varchar(200) not null, 
+       feed_url text not null, 
+       site_url varchar(250) not null default '');     
+
 create table ttrss_counters_cache (
        feed_id integer not null,
        owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
@@ -122,7 +129,7 @@ create table ttrss_user_entries (
        int_id serial not null primary key,
        ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
        feed_id int references ttrss_feeds(id) ON DELETE CASCADE, 
-       orig_feed_id int references ttrss_feeds(id) ON DELETE SET NULL, 
+       orig_feed_id integer references ttrss_archived_feeds(id) ON DELETE SET NULL, 
        owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
        marked boolean not null default false,
        published boolean not null default false,
index a2c023354b942de1e893f088c997c5eb3582b86e..40d2988a2b525ec936236c107cc76c8c074f5bd9 100644 (file)
@@ -2,10 +2,18 @@ begin;
 
 alter table ttrss_user_entries change feed_id feed_id integer null;
 
+create table ttrss_archived_feeds (id integer not null primary key,
+       owner_uid integer not null,
+       title varchar(200) not null, 
+       feed_url text not null, 
+       site_url varchar(250) not null default '',
+       index(owner_uid),
+       foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
+
 alter table ttrss_user_entries add column orig_feed_id integer;
 update ttrss_user_entries set orig_feed_id = NULL;
 
-alter table ttrss_user_entries add constraint FOREIGN KEY (orig_feed_id) REFERENCES ttrss_feeds(id) ON DELETE SET NULL;
+alter table ttrss_user_entries add constraint FOREIGN KEY (orig_feed_id) REFERENCES ttrss_archived_feeds(id) ON DELETE SET NULL;
 
 update ttrss_version set schema_version = 60;
 
index 39a2e202b1a56bfe585504c5696c579b970289ec..bcf2fdefb67d40fb7d119bb054227c8ff38c25a2 100644 (file)
@@ -2,10 +2,16 @@ begin;
 
 alter table ttrss_user_entries alter column feed_id drop not null;
 
+create table ttrss_archived_feeds (id integer not null primary key,
+       owner_uid integer not null references ttrss_users(id) on delete cascade,
+       title varchar(200) not null, 
+       feed_url text not null, 
+       site_url varchar(250) not null default '');     
+
 alter table ttrss_user_entries add column orig_feed_id integer;
 update ttrss_user_entries set orig_feed_id = NULL;
 
-alter table ttrss_user_entries add constraint "$4" FOREIGN KEY (orig_feed_id) REFERENCES ttrss_feeds(id) ON DELETE SET NULL;
+alter table ttrss_user_entries add constraint "$4" FOREIGN KEY (orig_feed_id) REFERENCES ttrss_archived_feeds(id) ON DELETE SET NULL;
 
 update ttrss_version set schema_version = 60;