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:
@@ -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 '');
|
||||
|
||||
Reference in New Issue
Block a user