]> git.wh0rd.org - tt-rss.git/blame_incremental - schema/ttrss_schema_pgsql.sql
sanitize_rss: allow pre and code tags
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
... / ...
CommitLineData
1drop table ttrss_version;
2drop table ttrss_labels;
3drop table ttrss_filters;
4drop table ttrss_filter_types;
5drop table ttrss_filter_actions;
6drop table ttrss_user_prefs;
7drop table ttrss_prefs;
8drop table ttrss_prefs_types;
9drop table ttrss_prefs_sections;
10drop table ttrss_tags;
11drop table ttrss_enclosures;
12drop table ttrss_entry_comments;
13drop table ttrss_user_entries;
14drop table ttrss_entries;
15drop table ttrss_scheduled_updates;
16drop table ttrss_feeds;
17drop table ttrss_feed_categories;
18drop table ttrss_users;
19drop table ttrss_themes;
20drop table ttrss_sessions;
21drop function SUBSTRING_FOR_DATE(timestamp, int, int);
22
23begin;
24
25create table ttrss_themes(id serial not null primary key,
26 theme_name varchar(200) not null,
27 theme_path varchar(200) not null);
28
29insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
30insert into ttrss_themes (theme_name, theme_path) values ('Graycube', 'graycube');
31insert into ttrss_themes (theme_name, theme_path) values ('Default (Compact)', 'compact');
32insert into ttrss_themes (theme_name, theme_path) values ('Three-pane', '3pane');
33
34create table ttrss_users (id serial not null primary key,
35 login varchar(120) not null unique,
36 pwd_hash varchar(250) not null,
37 last_login timestamp default null,
38 access_level integer not null default 0,
39 email varchar(250) not null default '',
40 email_digest boolean not null default false,
41 last_digest_sent timestamp default null,
42 created timestamp default null,
43 theme_id integer references ttrss_themes(id) default null);
44
45insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
46 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);
47
48create table ttrss_feed_categories(id serial not null primary key,
49 owner_uid integer not null references ttrss_users(id) on delete cascade,
50 collapsed boolean not null default false,
51 title varchar(200) not null);
52
53create table ttrss_feeds (id serial not null primary key,
54 owner_uid integer not null references ttrss_users(id) on delete cascade,
55 title varchar(200) not null,
56 cat_id integer default null references ttrss_feed_categories(id) on delete set null,
57 feed_url text not null,
58 icon_url varchar(250) not null default '',
59 update_interval integer not null default 0,
60 purge_interval integer not null default 0,
61 last_updated timestamp default null,
62 last_error text not null default '',
63 site_url varchar(250) not null default '',
64 auth_login varchar(250) not null default '',
65 parent_feed integer default null references ttrss_feeds(id) on delete set null,
66 private boolean not null default false,
67 auth_pass varchar(250) not null default '',
68 hidden boolean not null default false,
69 include_in_digest boolean not null default true,
70 rtl_content boolean not null default false,
71 cache_images boolean not null default false,
72 last_viewed timestamp default null,
73 last_update_started timestamp default null,
74 update_method integer not null default 0,
75 auth_pass_encrypted boolean not null default false);
76
77create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
78
79insert into ttrss_feeds (owner_uid, title, feed_url) values
80 (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.spb.ru/releases.rss');
81
82insert into ttrss_feeds (owner_uid, title, feed_url) values
83 (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.spb.ru/forum/rss.php');
84
85create table ttrss_entries (id serial not null primary key,
86 title text not null,
87 guid text not null unique,
88 link text not null,
89 updated timestamp not null,
90 content text not null,
91 content_hash varchar(250) not null,
92 no_orig_date boolean not null default false,
93 date_entered timestamp not null default NOW(),
94 num_comments integer not null default 0,
95 comments varchar(250) not null default '',
96 author varchar(250) not null default '');
97
98create index ttrss_entries_guid_index on ttrss_entries(guid);
99-- create index ttrss_entries_title_index on ttrss_entries(title);
100create index ttrss_entries_date_entered_index on ttrss_entries(date_entered);
101
102create table ttrss_user_entries (
103 int_id serial not null primary key,
104 ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
105 feed_id int references ttrss_feeds(id) ON DELETE CASCADE not null,
106 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
107 marked boolean not null default false,
108 published boolean not null default false,
109 last_read timestamp,
110 score int not null default 0,
111 unread boolean not null default true);
112
113-- create index ttrss_user_entries_feed_id_index on ttrss_user_entries(feed_id);
114-- create index ttrss_user_entries_owner_uid_index on ttrss_user_entries(owner_uid);
115create index ttrss_user_entries_ref_id_index on ttrss_user_entries(ref_id);
116create index ttrss_user_entries_feed_id on ttrss_user_entries(feed_id);
117
118create table ttrss_entry_comments (id serial not null primary key,
119 ref_id integer not null references ttrss_entries(id) ON DELETE CASCADE,
120 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
121 private boolean not null default false,
122 date_entered timestamp not null);
123
124create index ttrss_entry_comments_ref_id_index on ttrss_entry_comments(ref_id);
125-- create index ttrss_entry_comments_owner_uid_index on ttrss_entry_comments(owner_uid);
126
127create table ttrss_filter_types (id integer not null primary key,
128 name varchar(120) unique not null,
129 description varchar(250) not null unique);
130
131insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
132insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
133insert into ttrss_filter_types (id,name,description) values (3, 'both',
134 'Title or Content');
135insert into ttrss_filter_types (id,name,description) values (4, 'link',
136 'Link');
137
138create table ttrss_filter_actions (id integer not null primary key,
139 name varchar(120) unique not null,
140 description varchar(250) not null unique);
141
142insert into ttrss_filter_actions (id,name,description) values (1, 'filter',
143 'Filter article');
144
145insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
146 'Mark as read');
147
148insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
149 'Set starred');
150
151insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
152 'Assign tags');
153
154insert into ttrss_filter_actions (id,name,description) values (5, 'publish',
155 'Publish article');
156
157insert into ttrss_filter_actions (id,name,description) values (6, 'score',
158 'Modify score');
159
160create table ttrss_filters (id serial not null primary key,
161 owner_uid integer not null references ttrss_users(id) on delete cascade,
162 feed_id integer references ttrss_feeds(id) on delete cascade default null,
163 filter_type integer not null references ttrss_filter_types(id),
164 reg_exp varchar(250) not null,
165 enabled boolean not null default true,
166 inverse boolean not null default false,
167 action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
168 action_param varchar(250) not null default '');
169
170create table ttrss_labels (id serial not null primary key,
171 owner_uid integer not null references ttrss_users(id) on delete cascade,
172 sql_exp varchar(250) not null,
173 description varchar(250) not null);
174
175create index ttrss_labels_owner_uid_index on ttrss_labels(owner_uid);
176
177insert into ttrss_labels (owner_uid,sql_exp,description) values (1,'unread = true',
178 'Unread articles');
179
180insert into ttrss_labels (owner_uid,sql_exp,description) values (1,
181 'last_read is null and unread = false', 'Updated articles');
182
183create table ttrss_tags (id serial not null primary key,
184 tag_name varchar(250) not null,
185 owner_uid integer not null references ttrss_users(id) on delete cascade,
186 post_int_id integer references ttrss_user_entries(int_id) ON DELETE CASCADE not null);
187
188create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
189
190create table ttrss_version (schema_version int not null);
191
192insert into ttrss_version values (40);
193
194create table ttrss_enclosures (id serial not null primary key,
195 content_url text not null,
196 content_type varchar(250) not null,
197 title text not null,
198 duration text not null,
199 post_id integer references ttrss_entries(id) ON DELETE cascade NOT NULL);
200
201create table ttrss_prefs_types (id integer not null primary key,
202 type_name varchar(100) not null);
203
204insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
205insert into ttrss_prefs_types (id, type_name) values (2, 'string');
206insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
207
208create table ttrss_prefs_sections (id integer not null primary key,
209 section_name varchar(100) not null);
210
211insert into ttrss_prefs_sections (id, section_name) values (1, 'General');
212insert into ttrss_prefs_sections (id, section_name) values (2, 'Interface');
213insert into ttrss_prefs_sections (id, section_name) values (3, 'Advanced');
214
215create table ttrss_prefs (pref_name varchar(250) not null primary key,
216 type_id integer not null references ttrss_prefs_types(id),
217 section_id integer not null references ttrss_prefs_sections(id) default 1,
218 short_desc text not null,
219 help_text text not null default '',
220 access_level integer not null default 0,
221 def_value text not null);
222
223insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_ICONS', 1, 'true', 'Enable feed icons',3);
224insert 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);
225insert 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);
226insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ENABLE_LABELS', 1, 'false', 'Enable labels',3,
227 '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.');
228
229insert 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);
230insert 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,
231 'Default limit for articles to display, any custom number you like (0 - disables).');
232
233insert 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,
234 'This option is useful when you are reading several planet-type aggregators with partially colliding userbase. When disabled, it forces same posts from different feeds to appear only once.');
235
236insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('USER_STYLESHEET_URL', 2, '', 'User stylesheet URL',2,
237 'Link to user stylesheet to override default style, disabled if empty.');
238
239insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'false', 'Enable feed categories',2);
240
241insert 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);
242
243insert 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);
244insert 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);
245
246insert 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);
247
248insert 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,
249 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
250
251insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_FEEDS', 1, 'false', 'Hide feeds with no unread messages',2);
252
253insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('OPEN_LINKS_IN_NEW_WINDOW', 1, 'true', 'Open article links in new browser window',2);
254
255insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ON_CATCHUP_SHOW_NEXT_FEED', 1, 'false', 'On catchup show next feed',2,
256 'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');
257
258insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('FEEDS_SORT_BY_UNREAD', 1, 'false', 'Sort feeds by unread articles count',2);
259
260insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('EXTENDED_FEEDLIST', 1, 'false', 'Show additional information in feedlist',3);
261
262insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('MARK_UNREAD_ON_UPDATE', 1, 'false', 'Set articles as unread on update',3);
263
264insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('REVERSE_HEADLINES', 1, 'false', 'Reverse headline order (oldest first)',2);
265
266insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_ENABLE', 1, 'false', 'Enable e-mail digest',1,
267'This option enables sending daily digest of new (and unread) headlines on your configured e-mail address');
268
269insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('CONFIRM_FEED_CATCHUP', 1, 'true', 'Confirm marking feed as read',3);
270
271insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('CDM_AUTO_CATCHUP', 1, 'false', 'Mark articles as read automatically',2,
272'This option enables marking articles as read automatically in combined mode while you scroll article list.');
273
274insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
275
276insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_LIMIT', 3, '30', '', 1);
277
278insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
279
280insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_INFOBOX_DISABLE_OVERLAY', 1, 'false', '', 1);
281
282insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('STRIP_UNSAFE_TAGS', 1, 'true', 'Strip unsafe tags from articles', 3,
283'Strip all but most common HTML tags when reading articles.');
284
285insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('BLACKLISTED_TAGS', 2, 'main, generic, misc, uncategorized, blog, blogroll, general, news', 'Blacklisted tags', 3,
286'When auto-detecting tags in articles these tags will not be applied (comma-separated list).');
287
288insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SEARCH_TOOLBAR', 1, 'false', 'Enable search toolbar',2);
289
290insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ENABLE_PAGINATION', 2, '', '', 1);
291
292insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_PUBLISH_KEY', 2, '', '', 1);
293
294insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('FRESH_ARTICLE_MAX_AGE', 3, '24', 'Maximum age of fresh articles (in hours)',2);
295
296insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DIGEST_CATCHUP', 1, 'false', 'Mark articles in e-mail digest as read',1);
297
298insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('CDM_EXPANDED', 1, 'true', 'Automatically expand articles in combined mode',3);
299
300insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
301
302insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_SHOWS_SPECIAL', 1, 'true', 'Show special feeds when hiding read feeds',3);
303
304insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('HIDE_FEEDLIST', 1, 'false', 'Hide feedlist',2, 'This option hides feedlist and allows it to be toggled on the fly, useful for small screens.');
305
306insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('VFEED_GROUP_BY_FEED', 1, 'false', 'Group headlines in virtual feeds',2,
307 'When this option is enabled, headlines in Special feeds and Labels are grouped by feeds');
308
309insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SYNC_COUNTERS', 1, 'false', 'Prefer more accurate feedlist counters to UI speed',3);
310
311insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('STRIP_IMAGES', 1, 'false', 'Do not show images in articles', 2);
312
313insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ENABLE_FLASH_PLAYER', 1, 'true', 'Enable inline MP3 player', 3, 'Enable the Flash-based XSPF Player to play MP3-format podcast enclosures.');
314
315create table ttrss_user_prefs (
316 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
317 pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,
318 value text not null);
319
320create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
321-- create index ttrss_user_prefs_value_index on ttrss_user_prefs(value);
322
323create table ttrss_scheduled_updates (id serial not null primary key,
324 owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
325 feed_id integer default null references ttrss_feeds(id) ON DELETE CASCADE,
326 entered timestamp not null default NOW());
327
328create table ttrss_sessions (id varchar(250) unique not null primary key,
329 data text,
330 expire integer not null);
331
332create index ttrss_sessions_expire_index on ttrss_sessions(expire);
333
334create function SUBSTRING_FOR_DATE(timestamp, int, int) RETURNS text AS 'SELECT SUBSTRING(CAST($1 AS text), $2, $3)' LANGUAGE 'sql';
335
336commit;