1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-28 05:51:28 +00:00

add login/pass fields for feeds

This commit is contained in:
Andrew Dolgov
2005-12-16 06:45:04 +01:00
parent 65f8581478
commit e93a3c96bb
4 changed files with 29 additions and 1 deletions

View File

@@ -44,7 +44,9 @@ create table ttrss_feeds (id serial not null primary key,
purge_interval integer not null default 0,
last_updated timestamp default null,
last_error text not null default '',
site_url varchar(250) not null default '');
site_url varchar(250) not null default '',
auth_login varchar(250) not null default '',
auth_pass varchar(250) not null default '');
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);