1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:05:55 +00:00

per-feed filters in schema

This commit is contained in:
Andrew Dolgov
2005-11-21 14:11:16 +01:00
parent 3a933f22b1
commit 2bbd16b947
2 changed files with 6 additions and 2 deletions

View File

@@ -81,8 +81,9 @@ insert into ttrss_filter_types (id,name,description) values (3, 'both',
insert into ttrss_filter_types (id,name,description) values (4, 'link',
'Link');
create table ttrss_filters (id serial not null primary key,
create table ttrss_filters (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
feed_id integer references ttrss_filters(id) on delete cascade default null,
filter_type integer not null references ttrss_filter_types(id),
reg_exp varchar(250) not null,
description varchar(250) not null default '');