1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 08:01: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

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