1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 11:31:29 +00:00

schema: add enabled field to ttrss_filters

This commit is contained in:
Andrew Dolgov
2006-08-20 15:02:48 +01:00
parent 79ec0f2f4c
commit 4fd52ba4b0
4 changed files with 12 additions and 0 deletions

View File

@@ -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,