]> git.wh0rd.org - tt-rss.git/blame - schema/ttrss_schema_mysql.sql
TAG 1.0.6
[tt-rss.git] / schema / ttrss_schema_mysql.sql
CommitLineData
eb36b4eb 1drop table if exists ttrss_tags;
648472a7
AD
2drop table if exists ttrss_entries;
3drop table if exists ttrss_feeds;
4
5create table ttrss_feeds (id integer not null auto_increment primary key,
6 title varchar(200) not null unique,
7 feed_url varchar(250) unique not null,
8 icon_url varchar(250) not null default '',
8158c57a 9 last_updated datetime default '') TYPE=InnoDB;
648472a7
AD
10
11insert into ttrss_feeds (title,feed_url) values ('Footnotes', 'http://gnomedesktop.org/node/feed');
12insert into ttrss_feeds (title,feed_url) values ('Freedesktop.org', 'http://planet.freedesktop.org/rss20.xml');
13insert into ttrss_feeds (title,feed_url) values ('Planet Debian', 'http://planet.debian.org/rss20.xml');
14insert into ttrss_feeds (title,feed_url) values ('Planet GNOME', 'http://planet.gnome.org/rss20.xml');
15insert into ttrss_feeds (title,feed_url) values ('Planet Ubuntu', 'http://planet.ubuntulinux.org/rss20.xml');
16
17insert into ttrss_feeds (title,feed_url) values ('Monologue', 'http://www.go-mono.com/monologue/index.rss');
18
19insert into ttrss_feeds (title,feed_url) values ('Latest Linux Kernel Versions',
20 'http://kernel.org/kdist/rss.xml');
21
22insert into ttrss_feeds (title,feed_url) values ('RPGDot Newsfeed',
23 'http://www.rpgdot.com/team/rss/rss0.xml');
24
25insert into ttrss_feeds (title,feed_url) values ('Digg.com News',
26 'http://digg.com/rss/index.xml');
27
28insert into ttrss_feeds (title,feed_url) values ('Technocrat.net',
29 'http://syndication.technocrat.net/rss');
30
31create table ttrss_entries (id integer not null primary key auto_increment,
1696229f 32 feed_id integer not null,
8158c57a 33 updated datetime not null,
9ad5b0de 34 title text not null,
a0d5a39a 35 guid varchar(255) not null unique,
49a0dd3d 36 link text not null,
648472a7
AD
37 content text not null,
38 content_hash varchar(250) not null,
8158c57a
AD
39 last_read datetime,
40 marked bool not null default 0,
41 date_entered datetime not null,
42 no_orig_date bool not null default 0,
648472a7 43 comments varchar(250) not null default '',
1696229f
AD
44 unread bool not null default 1,
45 index (feed_id),
46 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) TYPE=InnoDB;
648472a7
AD
47
48drop table if exists ttrss_filters;
49drop table if exists ttrss_filter_types;
50
51create table ttrss_filter_types (id integer primary key,
52 name varchar(120) unique not null,
4b3dff6e 53 description varchar(250) not null unique) TYPE=InnoDB;
648472a7 54
648472a7
AD
55
56insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
57insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
58insert into ttrss_filter_types (id,name,description) values (3, 'both',
59 'Title or Content');
60
4b3dff6e 61create table ttrss_filters (id integer primary key auto_increment,
8158c57a 62 filter_type integer not null references ttrss_filter_types(id),
4b3dff6e
AD
63 reg_exp varchar(250) not null,
64 description varchar(250) not null default '') TYPE=InnoDB;
648472a7 65
a82065a1 66drop table if exists ttrss_labels;
48f0adb0 67
a82065a1 68create table ttrss_labels (id integer primary key auto_increment,
48f0adb0 69 sql_exp varchar(250) not null,
a82065a1 70 description varchar(250) not null) TYPE=InnoDB;
48f0adb0 71
48f0adb0
AD
72insert into ttrss_labels (sql_exp,description) values ('unread = true',
73 'Unread articles');
648472a7 74
eb36b4eb
AD
75create table ttrss_tags (id integer primary key auto_increment,
76 tag_name varchar(250) not null,
1696229f
AD
77 post_id integer not null,
78 index (post_id),
79 foreign key (post_id) references ttrss_entries(id) ON DELETE CASCADE) TYPE=InnoDB;
eb36b4eb 80