summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.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_pgsql.sql
parent79ec0f2f4c48e131972349d5289ee9da526cb2fa (diff)
schema: add enabled field to ttrss_filters
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 3e7ce8b53..81c865af9 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -142,6 +142,7 @@ create table ttrss_filters (id serial not null primary key,
feed_id integer references ttrss_feeds(id) on delete cascade default null,
filter_type integer not null references ttrss_filter_types(id),
reg_exp varchar(250) not null,
+ enabled boolean not null default true,
action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade);
create table ttrss_labels (id serial not null primary key,