mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:05:55 +00:00
store last feed update error in the database (SCHEMA UPDATED), display warning box in preferences on feed update error
This commit is contained in:
@@ -7,7 +7,8 @@ create table ttrss_feeds (id serial not null primary key,
|
||||
feed_url varchar(250) unique not null,
|
||||
icon_url varchar(250) not null default '',
|
||||
update_interval integer not null default 0,
|
||||
last_updated timestamp default null);
|
||||
last_updated timestamp default null,
|
||||
last_error text not null default '');
|
||||
|
||||
insert into ttrss_feeds (title,feed_url) values ('Footnotes', 'http://gnomedesktop.org/node/feed');
|
||||
insert into ttrss_feeds (title,feed_url) values ('Freedesktop.org', 'http://planet.freedesktop.org/rss20.xml');
|
||||
|
||||
Reference in New Issue
Block a user