]> git.wh0rd.org - tt-rss.git/blob - schema/ttrss_schema_pgsql.sql
rename All Posts, change default labels in schema
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
1 drop table ttrss_entries;
2 drop table ttrss_feeds;
3
4 create table ttrss_feeds (id serial not null primary key,
5 title varchar(200) not null unique,
6 feed_url varchar(250) unique not null,
7 icon_url varchar(250) not null default '',
8 last_updated timestamp default null);
9
10 insert into ttrss_feeds (title,feed_url) values ('Footnotes', 'http://gnomedesktop.org/node/feed');
11 insert into ttrss_feeds (title,feed_url) values ('Freedesktop.org', 'http://planet.freedesktop.org/rss20.xml');
12 insert into ttrss_feeds (title,feed_url) values ('Planet Debian', 'http://planet.debian.org/rss20.xml');
13 insert into ttrss_feeds (title,feed_url) values ('Planet GNOME', 'http://planet.gnome.org/rss20.xml');
14 insert into ttrss_feeds (title,feed_url) values ('Planet Ubuntu', 'http://planet.ubuntulinux.org/rss20.xml');
15
16 insert into ttrss_feeds (title,feed_url) values ('Monologue', 'http://www.go-mono.com/monologue/index.rss');
17
18 insert into ttrss_feeds (title,feed_url) values ('Latest Linux Kernel Versions',
19 'http://kernel.org/kdist/rss.xml');
20
21 insert into ttrss_feeds (title,feed_url) values ('RPGDot Newsfeed',
22 'http://www.rpgdot.com/team/rss/rss0.xml');
23
24 insert into ttrss_feeds (title,feed_url) values ('Digg.com News',
25 'http://digg.com/rss/index.xml');
26
27 insert into ttrss_feeds (title,feed_url) values ('Technocrat.net',
28 'http://syndication.technocrat.net/rss');
29
30 create table ttrss_entries (id serial not null primary key,
31 feed_id int references ttrss_feeds(id) not null,
32 updated timestamp not null,
33 title varchar(250) not null,
34 guid varchar(300) not null unique,
35 link varchar(300) not null,
36 content text not null,
37 content_hash varchar(250) not null,
38 last_read timestamp,
39 marked boolean not null default false,
40 date_entered timestamp not null default NOW(),
41 no_orig_date boolean not null default false,
42 comments varchar(250) not null default '',
43 unread boolean not null default true);
44
45 drop table ttrss_filters;
46 drop table ttrss_filter_types;
47
48 create table ttrss_filter_types (id integer primary key,
49 name varchar(120) unique not null,
50 description varchar(250) not null unique);
51
52 insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
53 insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
54 insert into ttrss_filter_types (id,name,description) values (3, 'both',
55 'Title or Content');
56
57 create table ttrss_filters (id serial primary key,
58 filter_type integer not null references ttrss_filter_types(id),
59 reg_exp varchar(250) not null,
60 description varchar(250) not null default '');
61
62 drop table ttrss_labels;
63
64 create table ttrss_labels (id serial primary key,
65 sql_exp varchar(250) not null,
66 description varchar(250) not null);
67
68 insert into ttrss_labels (sql_exp,description) values ('unread = true',
69 'Unread articles');
70