1
0
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:
Andrew Dolgov
2005-11-01 08:47:03 +01:00
parent f5a50b25d6
commit ab3d0b9926
6 changed files with 64 additions and 3 deletions

View File

@@ -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');