diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-01 08:47:03 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-01 08:47:03 +0100 |
| commit | ab3d0b9926f469540ac3d414b953a595aa5fec3e (patch) | |
| tree | 92803a123309cc346219c01d2f6f3af6ae54d455 /schema/ttrss_schema_mysql.sql | |
| parent | f5a50b25d6d023050ee7d8524bee1bdf7030057b (diff) | |
store last feed update error in the database (SCHEMA UPDATED), display warning box in preferences on feed update error
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
| -rw-r--r-- | schema/ttrss_schema_mysql.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 7abccc305..26ace74c2 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -7,7 +7,8 @@ create table ttrss_feeds (id integer not null auto_increment 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 datetime default '') TYPE=InnoDB; + last_updated datetime default '', + last_error text not null default '') TYPE=InnoDB; 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'); |