From: Andrew Dolgov Date: Sat, 18 Apr 2015 13:13:38 +0000 (+0300) Subject: schema: remove obsolete releases.rss feed X-Git-Tag: 16.3~330 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=6d204cd131a47d92894389fd7b05b6ad7996caab schema: remove obsolete releases.rss feed --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 540f1725..09234369 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -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'); diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 36d7f938..2b37c95f 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -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');