]> git.wh0rd.org - tt-rss.git/blame - schema/ttrss_schema_pgsql.sql
change feedlist refresh timeout from 30 to 15 minutes
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
CommitLineData
81dde650
AD
1drop table ttrss_version;
2drop table ttrss_labels;
3drop table ttrss_filters;
4drop table ttrss_filter_types;
53d6935b 5drop table ttrss_filter_actions;
81dde650
AD
6drop table ttrss_user_prefs;
7drop table ttrss_prefs;
8drop table ttrss_prefs_types;
9drop table ttrss_prefs_sections;
eb36b4eb 10drop table ttrss_tags;
8caa7999 11drop table ttrss_entry_comments;
81dde650 12drop table ttrss_user_entries;
28a80fbf
AD
13drop table ttrss_entries;
14drop table ttrss_feeds;
4a9a8bd8 15drop table ttrss_feed_categories;
4e9dd2cd 16drop table ttrss_users;
e552e5a2
AD
17drop table ttrss_themes;
18
855d0ecf
AD
19begin;
20
e552e5a2
AD
21create table ttrss_themes(id serial not null primary key,
22 theme_name varchar(200) not null,
23 theme_path varchar(200) not null);
4e9dd2cd 24
2aaacbc0 25create table ttrss_users (id serial not null primary key,
4e9dd2cd
AD
26 login varchar(120) not null unique,
27 pwd_hash varchar(250) not null,
4f628ae5 28 last_login timestamp default null,
53d6935b 29 access_level integer not null default 0,
e552e5a2 30 theme_id integer references ttrss_themes(id) default null);
4e9dd2cd
AD
31
32insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
33
4a9a8bd8 34create table ttrss_feed_categories(id serial not null primary key,
5a214f9d 35 owner_uid integer not null references ttrss_users(id) on delete cascade,
28bcadff 36 collapsed boolean not null default false,
4a9a8bd8
AD
37 title varchar(200) not null);
38
28a80fbf 39create table ttrss_feeds (id serial not null primary key,
4e9dd2cd 40 owner_uid integer not null references ttrss_users(id) on delete cascade,
6318df0e 41 title varchar(200) not null,
4a9a8bd8 42 cat_id integer references ttrss_feed_categories(id) default null,
6318df0e 43 feed_url varchar(250) not null,
b7f4bda2 44 icon_url varchar(250) not null default '',
d148926e 45 update_interval integer not null default 0,
1089b16b 46 purge_interval integer not null default 0,
ab3d0b99 47 last_updated timestamp default null,
37d379de 48 last_error text not null default '',
e93a3c96
AD
49 site_url varchar(250) not null default '',
50 auth_login varchar(250) not null default '',
51 auth_pass varchar(250) not null default '');
28a80fbf 52
daa25e8a
AD
53create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
54
4e9dd2cd 55insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'Footnotes', 'http://gnomedesktop.org/node/feed');
cd42edf1
AD
56insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'Latest Linux Kernel Versions','http://kernel.org/kdist/rss.xml');
57insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'RPGDot Newsfeed',
58 'http://www.rpgdot.com/team/rss/rss0.xml');
59insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'Digg.com News',
60 'http://digg.com/rss/index.xml');
61insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'Technocrat.net',
62 'http://syndication.technocrat.net/rss');
28a80fbf 63
28a80fbf 64create table ttrss_entries (id serial not null primary key,
9ad5b0de 65 title text not null,
8bbb8466 66 guid text not null unique,
49a0dd3d 67 link text not null,
8bbb8466 68 updated timestamp not null,
d76a3b03 69 content text not null,
466001c4 70 content_hash varchar(250) not null,
b82af8c3 71 no_orig_date boolean not null default false,
8bbb8466 72 date_entered timestamp not null default NOW(),
eb40e11b 73 num_comments integer not null default 0,
c62d62f6
AD
74 comments varchar(250) not null default '');
75
76create index ttrss_entries_guid_index on ttrss_entries(guid);
77create index ttrss_entries_title_index on ttrss_entries(title);
8bbb8466
AD
78
79create table ttrss_user_entries (
05732aa0 80 int_id serial not null primary key,
4c193675
AD
81 ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
82 feed_id int references ttrss_feeds(id) ON DELETE CASCADE not null,
8bbb8466
AD
83 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
84 marked boolean not null default false,
85 last_read timestamp,
b82af8c3 86 unread boolean not null default true);
a0d53889 87
daa25e8a
AD
88create index ttrss_user_entries_feed_id_index on ttrss_user_entries(feed_id);
89create index ttrss_user_entries_owner_uid_index on ttrss_user_entries(owner_uid);
90create index ttrss_user_entries_ref_id_index on ttrss_user_entries(ref_id);
91
8caa7999
AD
92create table ttrss_entry_comments (id serial not null primary key,
93 ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
94 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
95 private boolean not null default false,
96 date_entered timestamp not null);
97
98create index ttrss_entry_comments_ref_id_index on ttrss_entry_comments(ref_id);
99create index ttrss_entry_comments_owner_uid_index on ttrss_entry_comments(owner_uid);
100
2aaacbc0 101create table ttrss_filter_types (id integer not null primary key,
a0d53889
AD
102 name varchar(120) unique not null,
103 description varchar(250) not null unique);
104
105insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
106insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
107insert into ttrss_filter_types (id,name,description) values (3, 'both',
bdc00fe0 108 'Title or Content');
3a933f22
AD
109insert into ttrss_filter_types (id,name,description) values (4, 'link',
110 'Link');
a0d53889 111
53d6935b
AD
112create table ttrss_filter_actions (id integer not null primary key,
113 name varchar(120) unique not null,
114 description varchar(250) not null unique);
115
116insert into ttrss_filter_actions (id,name,description) values (1, 'filter',
117 'Filter article');
118
119insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
120 'Mark as read');
121
2bbd16b9 122create table ttrss_filters (id serial not null primary key,
4e9dd2cd 123 owner_uid integer not null references ttrss_users(id) on delete cascade,
e55a298d 124 feed_id integer references ttrss_feeds(id) on delete cascade default null,
a0d53889 125 filter_type integer not null references ttrss_filter_types(id),
4b3dff6e 126 reg_exp varchar(250) not null,
53d6935b
AD
127 description varchar(250) not null default '',
128 action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade);
a0d53889 129
2aaacbc0 130create table ttrss_labels (id serial not null primary key,
4e9dd2cd 131 owner_uid integer not null references ttrss_users(id) on delete cascade,
48f0adb0
AD
132 sql_exp varchar(250) not null,
133 description varchar(250) not null);
134
daa25e8a
AD
135create index ttrss_labels_owner_uid_index on ttrss_labels(owner_uid);
136
ee9008f9 137insert into ttrss_labels (owner_uid,sql_exp,description) values (1,'unread = true',
48f0adb0
AD
138 'Unread articles');
139
ee9008f9 140insert into ttrss_labels (owner_uid,sql_exp,description) values (1,
7cc6112a
AD
141 'last_read is null and unread = false', 'Updated articles');
142
2aaacbc0 143create table ttrss_tags (id serial not null primary key,
eb36b4eb 144 tag_name varchar(250) not null,
ee9008f9 145 owner_uid integer not null references ttrss_users(id) on delete cascade,
05732aa0 146 post_int_id integer references ttrss_user_entries(int_id) ON DELETE CASCADE not null);
eb36b4eb 147
daa25e8a
AD
148create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
149
5f171894
AD
150create table ttrss_version (schema_version int not null);
151
1089b16b 152insert into ttrss_version values (2);
5f171894 153
2aaacbc0 154create table ttrss_prefs_types (id integer not null primary key,
e0257be1
AD
155 type_name varchar(100) not null);
156
157insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
158insert into ttrss_prefs_types (id, type_name) values (2, 'string');
159insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
160
2aaacbc0 161create table ttrss_prefs_sections (id integer not null primary key,
e0257be1
AD
162 section_name varchar(100) not null);
163
603e9ebe
AD
164insert into ttrss_prefs_sections (id, section_name) values (1, 'General');
165insert into ttrss_prefs_sections (id, section_name) values (2, 'Interface');
650bc435 166insert into ttrss_prefs_sections (id, section_name) values (3, 'Advanced');
e0257be1 167
2aaacbc0 168create table ttrss_prefs (pref_name varchar(250) not null primary key,
e0257be1
AD
169 type_id integer not null references ttrss_prefs_types(id),
170 section_id integer not null references ttrss_prefs_sections(id) default 1,
603e9ebe
AD
171 short_desc text not null,
172 help_text text not null default '',
ff485f1d
AD
173 def_value text not null);
174
175insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_ICONS', 1, 'true', 'Enable icons in feedlist',2);
ff485f1d
AD
176insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_OLD_DAYS', 3, '60', 'Purge old posts after this number of days (0 - disables)',1);
177insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('UPDATE_POST_ON_CHECKSUM_CHANGE', 1, 'true', 'Update post on checksum change',1);
178insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_PREFS_CATCHUP_UNCATCHUP', 1, 'false', 'Enable catchup/uncatchup buttons in feed editor',2);
179insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ENABLE_LABELS', 1, 'false', 'Enable labels',3,
36990e33
AD
180 'Experimental support for virtual feeds based on user crafted SQL queries. This feature is highly experimental and at this point not user friendly. Use with caution.');
181
ff485f1d
AD
182insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_UPDATE_INTERVAL', 3, '30', 'Default interval between feed updates (in minutes)',1);
183insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DISPLAY_HEADER', 1, 'true', 'Display header',2);
184insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DISPLAY_FOOTER', 1, 'true', 'Display footer',2);
185insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('USE_COMPACT_STYLESHEET', 1, 'false', 'Use compact stylesheet by default',2);
186insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DEFAULT_ARTICLE_LIMIT', 3, '0', 'Default article limit',2,
36990e33
AD
187 'Default limit for articles to display, any custom number you like (0 - disables).');
188
ff485f1d 189insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DISPLAY_FEEDLIST_ACTIONS', 1, 'false', 'Display feedlist actions',2,
36990e33
AD
190 'Display separate dropbox for feedlist actions, if disabled these actions are available in global actions menu.');
191
71604ca4
AD
192insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1,
193 'This option is useful when you are reading several planet-type aggregators with partially colliding userbase.
14c8eca7 194 When disabled, it forces same posts from different feeds to appear only once.');
71604ca4 195
386d7b5b
AD
196insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('USER_STYLESHEET_URL', 2, '', 'User stylesheet URL',2,
197 'Link to user stylesheet to override default style, disabled if empty.');
198
91ff844a 199insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'false', 'Enable feed categories',2);
10dc37ac 200
591c396d
AD
201insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SHOW_CONTENT_PREVIEW', 1, 'true', 'Show content preview in headlines list',2);
202
9167e250
AD
203insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SHORT_DATE_FORMAT', 2, 'M d, G:i', 'Short date format',3);
204insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('LONG_DATE_FORMAT', 2, 'D, M d Y - G:i', 'Long date format',3);
205
be773442
AD
206insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HEADLINES_SMART_DATE', 1, 'true', 'Use more accessible date/time format for headlines',3);
207
30ccc2f1
AD
208insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('COMBINED_DISPLAY_MODE', 1, 'false', 'Combined feed display',2,
209 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
386cbf27 210
4e9dd2cd 211create table ttrss_user_prefs (
00a0bcc8
AD
212 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
213 pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,
4e9dd2cd
AD
214 value text not null);
215
daa25e8a
AD
216create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
217create index ttrss_user_prefs_value_index on ttrss_user_prefs(value);
218
855d0ecf 219commit;