1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 11:19:15 +00:00

support for feed-specific images (channel->url)

This commit is contained in:
Andrew Dolgov
2005-08-26 04:11:37 +01:00
parent a14b6d21d9
commit b7f4bda298
5 changed files with 62 additions and 17 deletions

View File

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