From 9ebaec057c6c9e1644eb7673ddb3f709b9874bb8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 8 Dec 2006 07:31:49 +0100 Subject: ttrss_filters: add action_param field, bump schema version --- schema/ttrss_schema_mysql.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'schema/ttrss_schema_mysql.sql') diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 19f38eaa7..384bd1e8e 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -153,6 +153,7 @@ create table ttrss_filters (id integer not null primary key auto_increment, reg_exp varchar(250) not null, enabled bool not null default true, action_id integer not null default 1, + action_param varchar(200) not null default '', index (filter_type), foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE, index (owner_uid), @@ -186,7 +187,7 @@ create table ttrss_tags (id integer primary key auto_increment, create table ttrss_version (schema_version int not null) TYPE=InnoDB; -insert into ttrss_version values (11); +insert into ttrss_version values (12); create table ttrss_prefs_types (id integer not null primary key, type_name varchar(100) not null) TYPE=InnoDB; -- cgit v1.2.3