summaryrefslogtreecommitdiff
path: root/ttrss_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'ttrss_schema.sql')
-rw-r--r--ttrss_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/ttrss_schema.sql b/ttrss_schema.sql
index cdc7abfb5..0ee3a7558 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -4,6 +4,7 @@ drop table ttrss_feeds;
create table ttrss_feeds (id serial not null primary key,
title varchar(200) not null unique,
feed_url varchar(250) unique not null,
+ icon_url varchar(250) not null default '',
last_updated timestamp default null);
insert into ttrss_feeds (title,feed_url) values ('Footnotes', 'http://gnomedesktop.org/node/feed');