From: Andrew Dolgov Date: Thu, 8 Sep 2005 13:05:48 +0000 (+0100) Subject: rename All Posts, change default labels in schema X-Git-Tag: 1.0.4~14 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=d6f55ce80066e7f48389eed6169c1d8360fd1f4d;p=tt-rss.git rename All Posts, change default labels in schema --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 0ed2b8df..ae736cb6 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -66,9 +66,6 @@ create table ttrss_labels (id integer primary key auto_increment, sql_exp varchar(250) not null, description varchar(250) not null) TYPE=InnoDB; -insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'', - 'Example Label'); - insert into ttrss_labels (sql_exp,description) values ('unread = true', 'Unread articles'); diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 0bb70448..31183173 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -65,9 +65,6 @@ create table ttrss_labels (id serial primary key, sql_exp varchar(250) not null, description varchar(250) not null); -insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'', - 'Example Label'); - insert into ttrss_labels (sql_exp,description) values ('unread = true', 'Unread articles'); diff --git a/tt-rss.php b/tt-rss.php index 78fcd322..445f8ab9 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -77,7 +77,7 @@  View: