summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.2.4-1.2.6-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/upgrade-1.2.4-1.2.6-mysql.sql
parent9ebaec057c6c9e1644eb7673ddb3f709b9874bb8 (diff)
ttrss_filters: add tag action
Diffstat (limited to 'schema/upgrade-1.2.4-1.2.6-mysql.sql')
-rw-r--r--schema/upgrade-1.2.4-1.2.6-mysql.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/schema/upgrade-1.2.4-1.2.6-mysql.sql b/schema/upgrade-1.2.4-1.2.6-mysql.sql
index 2b100d175..10b571d78 100644
--- a/schema/upgrade-1.2.4-1.2.6-mysql.sql
+++ b/schema/upgrade-1.2.4-1.2.6-mysql.sql
@@ -5,5 +5,8 @@ update ttrss_filters set action_param = '';
alter table ttrss_filters change action_param action_param varchar(200) not null;
alter table ttrss_filters alter column action_param set default '';
+insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
+ 'Assign tag');
+
update ttrss_version set schema_version = 12;