summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-08 07:34:59 +0100
committerAndrew Dolgov <[email protected]>2006-12-08 07:34:59 +0100
commit7cb9311ba13df7fec30fe498578089398785e48d (patch)
tree6c8b810e0f8640a8f20108752f5568fe910b242b /schema/ttrss_schema_mysql.sql
parent9ebaec057c6c9e1644eb7673ddb3f709b9874bb8 (diff)
ttrss_filters: add tag action
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 384bd1e8e..b65162820 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -146,6 +146,9 @@ insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
'Set starred');
+insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
+ 'Assign tag');
+
create table ttrss_filters (id integer not null primary key auto_increment,
owner_uid integer not null,
feed_id integer default null,