summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-20 15:02:48 +0100
committerAndrew Dolgov <[email protected]>2006-08-20 15:02:48 +0100
commit4fd52ba4b02b1d77cce6ebb921f9ec6d374fc4aa (patch)
tree1557ac661992d0064d1202d6988d8c7705a8c4ad /schema/ttrss_schema_mysql.sql
parent79ec0f2f4c48e131972349d5289ee9da526cb2fa (diff)
schema: add enabled field to ttrss_filters
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 74ad87cfe..b6bf13426 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -148,6 +148,7 @@ create table ttrss_filters (id integer not null primary key auto_increment,
feed_id integer default null,
filter_type integer not null,
reg_exp varchar(250) not null,
+ enabled bool not null default true,
action_id integer not null default 1,
index (filter_type),
foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,