]> git.wh0rd.org - tt-rss.git/commitdiff
schema: remove obsolete releases.rss feed
authorAndrew Dolgov <noreply@fakecake.org>
Sat, 18 Apr 2015 13:13:38 +0000 (16:13 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Sat, 18 Apr 2015 13:13:38 +0000 (16:13 +0300)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql

index 540f172515085e4bf6db1a257107e50db327a6de..09234369e36c17d4ab5ebab5e20d7667c5988efc 100644 (file)
@@ -131,9 +131,6 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
        foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE SET NULL,
        foreign key (parent_feed) references ttrss_feeds(id) ON DELETE SET NULL) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
 
-insert into ttrss_feeds (owner_uid, title, feed_url) values
-       (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.org/releases.rss');
-
 insert into ttrss_feeds (owner_uid, title, feed_url) values
        (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.org/forum/rss.php');
 
index 36d7f93891c054574cbd9b62eba8af6f44fcbce6..2b37c95fb6bf82b1510d717bc044dddad311597a 100644 (file)
@@ -101,9 +101,6 @@ create table ttrss_feeds (id serial not null primary key,
 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
 create index ttrss_feeds_cat_id_idx on ttrss_feeds(cat_id);
 
-insert into ttrss_feeds (owner_uid, title, feed_url) values
-       (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.org/releases.rss');
-
 insert into ttrss_feeds (owner_uid, title, feed_url) values
        (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.org/forum/rss.php');