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

ttrss_feeds: add private column to hide from browser

This commit is contained in:
Andrew Dolgov
2005-12-30 04:05:01 +01:00
parent 48fa05ad37
commit 5b35b4de9b
4 changed files with 16 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
auth_login varchar(250) not null default '',
auth_pass varchar(250) not null default '',
parent_feed integer default null,
private bool not null default false,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),