summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-08 14:05:48 +0100
committerAndrew Dolgov <[email protected]>2005-09-08 14:05:48 +0100
commitd6f55ce80066e7f48389eed6169c1d8360fd1f4d (patch)
tree6c752f8d4461fd704527373ebe1b9a9a1c6e373e /schema
parent61324b8395c3d055bff6cb505eed939b8e5f2654 (diff)
rename All Posts, change default labels in schema
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql3
-rw-r--r--schema/ttrss_schema_pgsql.sql3
2 files changed, 0 insertions, 6 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 0ed2b8df5..ae736cb6f 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 0bb704483..31183173b 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');