summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-08 07:36:59 +0100
committerAndrew Dolgov <[email protected]>2006-12-08 07:36:59 +0100
commitde07b5eee928a3d78fede1e3b7ef2d80b5199d42 (patch)
tree16d21bbe50aca67cc4e4ceac56bb20625982eae8 /schema
parent7cb9311ba13df7fec30fe498578089398785e48d (diff)
ttrss_filters: add tag action (2)
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
-rw-r--r--schema/ttrss_schema_pgsql.sql2
-rw-r--r--schema/upgrade-1.2.4-1.2.6-mysql.sql2
-rw-r--r--schema/upgrade-1.2.4-1.2.6-pgsql.sql2
4 files changed, 4 insertions, 4 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index b65162820..e8c43dde6 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 5bec8723f..3feacb75b 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 10b571d78..73af4e375 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 71b4634dd..6de90f1ab 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;