]> git.wh0rd.org - tt-rss.git/commitdiff
unpimp the blog
authorAndrew Dolgov <fox@madoka.spb.ru>
Tue, 30 Oct 2007 09:33:08 +0000 (10:33 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Tue, 30 Oct 2007 09:33:08 +0000 (10:33 +0100)
functions.php
schema/ttrss_schema_pgsql.sql

index 791a4191e5d6ea63689f9e2a4bd41d48b2db10cb..3d4c554a2f5673377753601158bdfba433330486 100644 (file)
                db_query($link, "insert into ttrss_labels (owner_uid,sql_exp,description) 
                        values ('$uid','last_read is null and unread = false', 'Updated articles')");
 
-               db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
-                       values ('$uid', 'Tiny Tiny RSS: Dev. Blog',
-                       'http://bah.org.ru/archives/category/tt-rss/feed')");
-
                db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
                        values ('$uid', 'Tiny Tiny RSS: New Releases',
                        'http://tt-rss.spb.ru/releases.rss')");
index 419b94f4f5b4626b0efe7a9672c564af7598ef3d..c75e210f16f043dfe7d3cc33365207a3d3091bbb 100644 (file)
@@ -70,9 +70,6 @@ create table ttrss_feeds (id serial not null primary key,
 
 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
 
-insert into ttrss_feeds (owner_uid, title, feed_url) values
-       (1, 'Tiny Tiny RSS: Dev. Blog', 'http://bah.org.ru/archives/category/tt-rss/feed');
-
 insert into ttrss_feeds (owner_uid, title, feed_url) values
        (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.spb.ru/releases.rss');