1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-30 22:57:10 +00:00

filters are now actually applied separately for each user

This commit is contained in:
Andrew Dolgov
2005-11-21 08:38:28 +01:00
parent fe99ab12bb
commit 3a933f22b1
3 changed files with 18 additions and 7 deletions

View File

@@ -78,6 +78,8 @@ insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title'
insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
insert into ttrss_filter_types (id,name,description) values (3, 'both',
'Title or Content');
insert into ttrss_filter_types (id,name,description) values (4, 'link',
'Link');
create table ttrss_filters (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,