From: Andrew Dolgov Date: Fri, 8 Dec 2006 06:36:59 +0000 (+0100) Subject: ttrss_filters: add tag action (2) X-Git-Tag: 1.2.6~11 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=de07b5eee928a3d78fede1e3b7ef2d80b5199d42;p=tt-rss.git ttrss_filters: add tag action (2) --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index b6516282..e8c43dde 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -147,7 +147,7 @@ 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'); + 'Assign tags'); create table ttrss_filters (id integer not null primary key auto_increment, owner_uid integer not null, diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 5bec8723..3feacb75 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -141,7 +141,7 @@ 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'); + 'Assign tags'); create table ttrss_filters (id serial not null primary key, owner_uid integer not null references ttrss_users(id) on delete cascade, 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 10b571d7..73af4e37 100644 --- a/schema/upgrade-1.2.4-1.2.6-mysql.sql +++ b/schema/upgrade-1.2.4-1.2.6-mysql.sql @@ -6,7 +6,7 @@ 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'); + 'Assign tags'); update ttrss_version set schema_version = 12; 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 71b4634d..6de90f1a 100644 --- a/schema/upgrade-1.2.4-1.2.6-pgsql.sql +++ b/schema/upgrade-1.2.4-1.2.6-pgsql.sql @@ -8,7 +8,7 @@ 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'); + 'Assign tags'); update ttrss_version set schema_version = 12;