new sites in schema
This commit is contained in:
parent
d482c58c37
commit
857d6a8072
|
@ -81,7 +81,10 @@ input {
|
||||||
|
|
||||||
table.main td.toolbar {
|
table.main td.toolbar {
|
||||||
height : 40px;
|
height : 40px;
|
||||||
background : #f0f0f0;
|
background-color : #f0f0f0;
|
||||||
|
/* background-image : url("shadow_top.png");
|
||||||
|
background-position : bottom left;
|
||||||
|
background-repeat : repeat-x; */
|
||||||
padding-right : 5px;
|
padding-right : 5px;
|
||||||
font-size : small;
|
font-size : small;
|
||||||
text-align : right;
|
text-align : right;
|
||||||
|
|
|
@ -12,7 +12,18 @@ insert into ttrss_feeds (id,title,feed_url) values (2, 'Freedesktop.org', 'http:
|
||||||
insert into ttrss_feeds (id,title,feed_url) values (3, 'Planet Debian', 'http://planet.debian.org/rss20.xml');
|
insert into ttrss_feeds (id,title,feed_url) values (3, 'Planet Debian', 'http://planet.debian.org/rss20.xml');
|
||||||
insert into ttrss_feeds (id,title,feed_url) values (5, 'Planet GNOME', 'http://planet.gnome.org/rss20.xml');
|
insert into ttrss_feeds (id,title,feed_url) values (5, 'Planet GNOME', 'http://planet.gnome.org/rss20.xml');
|
||||||
insert into ttrss_feeds (id,title,feed_url) values (6, 'Monologue', 'http://www.go-mono.com/monologue/index.rss');
|
insert into ttrss_feeds (id,title,feed_url) values (6, 'Monologue', 'http://www.go-mono.com/monologue/index.rss');
|
||||||
insert into ttrss_feeds (id,title,feed_url) values (7, 'Art.Gnome.Org Releases', 'http://art.gnome.org/backend.php');
|
|
||||||
|
insert into ttrss_feeds (id,title,feed_url) values (8, 'Latest Linux Kernel Versions',
|
||||||
|
'http://kernel.org/kdist/rss.xml');
|
||||||
|
|
||||||
|
insert into ttrss_feeds (id,title,feed_url) values (9, 'RPGDot Newsfeed',
|
||||||
|
'http://www.rpgdot.com/team/rss/rss0.xml');
|
||||||
|
|
||||||
|
insert into ttrss_feeds (id,title,feed_url) values (10, 'Digg.com News',
|
||||||
|
'http://digg.com/rss/index.xml');
|
||||||
|
|
||||||
|
insert into ttrss_feeds (id,title,feed_url) values (11, 'Technocrat.net',
|
||||||
|
'http://syndication.technocrat.net/rss');
|
||||||
|
|
||||||
create table ttrss_entries (id serial not null primary key,
|
create table ttrss_entries (id serial not null primary key,
|
||||||
feed_id int references ttrss_feeds(id) not null,
|
feed_id int references ttrss_feeds(id) not null,
|
||||||
|
|
Loading…
Reference in New Issue