summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.2.4-1.2.6-pgsql.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-pgsql.sql
parent9ebaec057c6c9e1644eb7673ddb3f709b9874bb8 (diff)
ttrss_filters: add tag action
Diffstat (limited to 'schema/upgrade-1.2.4-1.2.6-pgsql.sql')
-rw-r--r--schema/upgrade-1.2.4-1.2.6-pgsql.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/schema/upgrade-1.2.4-1.2.6-pgsql.sql b/schema/upgrade-1.2.4-1.2.6-pgsql.sql
index 07ded63c0..71b4634dd 100644
--- a/schema/upgrade-1.2.4-1.2.6-pgsql.sql
+++ b/schema/upgrade-1.2.4-1.2.6-pgsql.sql
@@ -7,6 +7,9 @@ update ttrss_filters set action_param = '';
alter table ttrss_filters alter column action_param set 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;
commit;