summaryrefslogtreecommitdiff
path: root/sql/mysql/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/mysql/schema.sql')
-rw-r--r--sql/mysql/schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/mysql/schema.sql b/sql/mysql/schema.sql
index d8e6e270a..589d1013a 100644
--- a/sql/mysql/schema.sql
+++ b/sql/mysql/schema.sql
@@ -149,9 +149,6 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
foreign key (parent_feed) references ttrss_feeds(id) ON DELETE SET NULL,
unique(feed_url(255), owner_uid)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_feeds (owner_uid, title, feed_url) values
- ((select id from ttrss_users where login = 'admin'), 'Tiny Tiny RSS: Forum', 'https://tt-rss.org/forum/rss.php');
-
create table ttrss_entries (id integer not null primary key auto_increment,
title text not null,
guid varchar(255) not null unique,
@@ -252,6 +249,9 @@ insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
insert into ttrss_filter_actions (id,name,description) values (9, 'plugin',
'Invoke plugin');
+insert into ttrss_filter_actions (id,name,description) values (10, 'ignore-tag',
+ 'Ignore tags');
+
create table ttrss_filters2(id integer primary key auto_increment,
owner_uid integer not null,
match_any_rule boolean not null default false,