]> git.wh0rd.org - tt-rss.git/blob - schema/ttrss_schema_mysql.sql
Merge branch 'master' into tunable-fetches
[tt-rss.git] / schema / ttrss_schema_mysql.sql
1 SET NAMES utf8;
2 SET CHARACTER SET utf8;
3
4 drop table if exists ttrss_plugin_storage;
5 drop table if exists ttrss_linked_feeds;
6 drop table if exists ttrss_linked_instances;
7 drop table if exists ttrss_access_keys;
8 drop table if exists ttrss_user_labels2;
9 drop table if exists ttrss_labels2;
10 drop table if exists ttrss_feedbrowser_cache;
11 drop table if exists ttrss_version;
12 drop table if exists ttrss_labels;
13 drop table if exists ttrss_filters2_actions;
14 drop table if exists ttrss_filters2_rules;
15 drop table if exists ttrss_filters2;
16 drop table if exists ttrss_filter_types;
17 drop table if exists ttrss_filter_actions;
18 drop table if exists ttrss_user_prefs;
19 drop table if exists ttrss_prefs;
20 drop table if exists ttrss_prefs_types;
21 drop table if exists ttrss_prefs_sections;
22 drop table if exists ttrss_tags;
23 drop table if exists ttrss_enclosures;
24 drop table if exists ttrss_settings_profiles;
25 drop table if exists ttrss_entry_comments;
26 drop table if exists ttrss_user_entries;
27 drop table if exists ttrss_entries;
28 drop table if exists ttrss_scheduled_updates;
29 drop table if exists ttrss_counters_cache;
30 drop table if exists ttrss_cat_counters_cache;
31 drop table if exists ttrss_feeds;
32 drop table if exists ttrss_archived_feeds;
33 drop table if exists ttrss_feed_categories;
34 drop table if exists ttrss_users;
35 drop table if exists ttrss_themes;
36 drop table if exists ttrss_sessions;
37
38 begin;
39
40 create table ttrss_users (id integer primary key not null auto_increment,
41 login varchar(120) not null unique,
42 pwd_hash varchar(250) not null,
43 last_login datetime default null,
44 access_level integer not null default 0,
45 theme_id integer default null,
46 email varchar(250) not null default '',
47 full_name varchar(250) not null default '',
48 email_digest bool not null default false,
49 last_digest_sent datetime default null,
50 salt varchar(250) not null default '',
51 created datetime default null,
52 twitter_oauth longtext default null,
53 otp_enabled boolean not null default false,
54 index (theme_id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
55
56 insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
57 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);
58
59 create table ttrss_feed_categories(id integer not null primary key auto_increment,
60 owner_uid integer not null,
61 title varchar(200) not null,
62 collapsed bool not null default false,
63 order_id integer not null default 0,
64 parent_cat integer,
65 view_settings varchar(250) not null default '',
66 index(parent_cat),
67 foreign key (parent_cat) references ttrss_feed_categories(id) ON DELETE SET NULL,
68 index(owner_uid),
69 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
70
71 create table ttrss_archived_feeds (id integer not null primary key,
72 owner_uid integer not null,
73 title varchar(200) not null,
74 feed_url text not null,
75 site_url varchar(250) not null default '',
76 index(owner_uid),
77 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
78
79 create table ttrss_counters_cache (
80 feed_id integer not null,
81 owner_uid integer not null,
82 value integer not null default 0,
83 updated datetime not null,
84 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
85 );
86
87 create index ttrss_counters_cache_feed_id_idx on ttrss_counters_cache(feed_id);
88 create index ttrss_counters_cache_owner_uid_idx on ttrss_counters_cache(owner_uid);
89 create index ttrss_counters_cache_value_idx on ttrss_counters_cache(value);
90
91 create table ttrss_cat_counters_cache (
92 feed_id integer not null,
93 owner_uid integer not null,
94 value integer not null default 0,
95 updated datetime not null,
96 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
97 );
98
99 create index ttrss_cat_counters_cache_owner_uid_idx on ttrss_cat_counters_cache(owner_uid);
100
101 create table ttrss_feeds (id integer not null auto_increment primary key,
102 owner_uid integer not null,
103 title varchar(200) not null,
104 cat_id integer default null,
105 feed_url text not null,
106 icon_url varchar(250) not null default '',
107 update_interval integer not null default 0,
108 purge_interval integer not null default 0,
109 last_updated datetime default 0,
110 last_error varchar(250) not null default '',
111 site_url varchar(250) not null default '',
112 auth_login varchar(250) not null default '',
113 auth_pass varchar(250) not null default '',
114 parent_feed integer default null,
115 private bool not null default false,
116 rtl_content bool not null default false,
117 hidden bool not null default false,
118 include_in_digest boolean not null default true,
119 cache_images boolean not null default false,
120 hide_images boolean not null default false,
121 cache_content boolean not null default false,
122 auth_pass_encrypted boolean not null default false,
123 last_viewed datetime default null,
124 last_update_started datetime default null,
125 always_display_enclosures boolean not null default false,
126 update_method integer not null default 0,
127 order_id integer not null default 0,
128 mark_unread_on_update boolean not null default false,
129 update_on_checksum_change boolean not null default false,
130 strip_images boolean not null default false,
131 view_settings varchar(250) not null default '',
132 pubsub_state integer not null default 0,
133 favicon_last_checked datetime default null,
134 index(owner_uid),
135 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
136 index(cat_id),
137 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE SET NULL,
138 index(parent_feed),
139 foreign key (parent_feed) references ttrss_feeds(id) ON DELETE SET NULL) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
140
141 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
142 create index ttrss_feeds_cat_id_idx on ttrss_feeds(cat_id);
143
144 insert into ttrss_feeds (owner_uid, title, feed_url) values
145 (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.org/releases.rss');
146
147 insert into ttrss_feeds (owner_uid, title, feed_url) values
148 (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.org/forum/rss.php');
149
150 create table ttrss_entries (id integer not null primary key auto_increment,
151 title text not null,
152 guid varchar(255) not null unique,
153 link text not null,
154 updated datetime not null,
155 content longtext not null,
156 content_hash varchar(250) not null,
157 cached_content longtext,
158 no_orig_date bool not null default 0,
159 date_entered datetime not null,
160 date_updated datetime not null,
161 num_comments integer not null default 0,
162 plugin_data longtext,
163 comments varchar(250) not null default '',
164 author varchar(250) not null default '') ENGINE=InnoDB DEFAULT CHARSET=UTF8;
165
166 create index ttrss_entries_date_entered_index on ttrss_entries(date_entered);
167 create index ttrss_entries_guid_index on ttrss_entries(guid);
168 create index ttrss_entries_updated_idx on ttrss_entries(updated);
169
170 create table ttrss_user_entries (
171 int_id integer not null primary key auto_increment,
172 ref_id integer not null,
173 uuid varchar(200) not null,
174 feed_id int,
175 orig_feed_id int,
176 owner_uid integer not null,
177 marked bool not null default 0,
178 published bool not null default 0,
179 tag_cache text not null,
180 label_cache text not null,
181 last_read datetime,
182 score int not null default 0,
183 note longtext,
184 last_marked datetime,
185 last_published datetime,
186 unread bool not null default 1,
187 index (ref_id),
188 foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
189 index (feed_id),
190 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
191 index (orig_feed_id),
192 foreign key (orig_feed_id) references ttrss_archived_feeds(id) ON DELETE SET NULL,
193 index (owner_uid),
194 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
195
196 create index ttrss_user_entries_owner_uid_index on ttrss_user_entries(owner_uid);
197 create index ttrss_user_entries_ref_id_index on ttrss_user_entries(ref_id);
198 create index ttrss_user_entries_feed_id on ttrss_user_entries(feed_id);
199 create index ttrss_user_entries_unread_idx on ttrss_user_entries(unread);
200
201 create table ttrss_entry_comments (id integer not null primary key,
202 ref_id integer not null,
203 owner_uid integer not null,
204 private bool not null default 0,
205 date_entered datetime not null,
206 index (ref_id),
207 foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
208 index (owner_uid),
209 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
210
211 create table ttrss_filter_types (id integer primary key,
212 name varchar(120) unique not null,
213 description varchar(250) not null unique) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
214
215 insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
216 insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
217 insert into ttrss_filter_types (id,name,description) values (3, 'both',
218 'Title or Content');
219 insert into ttrss_filter_types (id,name,description) values (4, 'link',
220 'Link');
221 insert into ttrss_filter_types (id,name,description) values (5, 'date',
222 'Article Date');
223 insert into ttrss_filter_types (id,name,description) values (6, 'author', 'Author');
224 insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
225
226 create table ttrss_filter_actions (id integer not null primary key,
227 name varchar(120) unique not null,
228 description varchar(250) not null unique) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
229
230 insert into ttrss_filter_actions (id,name,description) values (1, 'filter',
231 'Delete article');
232
233 insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
234 'Mark as read');
235
236 insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
237 'Set starred');
238
239 insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
240 'Assign tags');
241
242 insert into ttrss_filter_actions (id,name,description) values (5, 'publish',
243 'Publish article');
244
245 insert into ttrss_filter_actions (id,name,description) values (6, 'score',
246 'Modify score');
247
248 insert into ttrss_filter_actions (id,name,description) values (7, 'label',
249 'Assign label');
250
251 insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
252 'Stop / Do nothing');
253
254 create table ttrss_filters2(id integer primary key auto_increment,
255 owner_uid integer not null,
256 match_any_rule boolean not null default false,
257 enabled boolean not null default true,
258 inverse bool not null default false,
259 title varchar(250) not null default '',
260 order_id integer not null default 0,
261 index(owner_uid),
262 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
263
264 create table ttrss_filters2_rules(id integer primary key auto_increment,
265 filter_id integer not null references ttrss_filters2(id) on delete cascade,
266 reg_exp varchar(250) not null,
267 inverse bool not null default false,
268 filter_type integer not null,
269 feed_id integer default null,
270 cat_id integer default null,
271 cat_filter boolean not null default false,
272 index (filter_id),
273 foreign key (filter_id) references ttrss_filters2(id) on delete cascade,
274 index (filter_type),
275 foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,
276 index (feed_id),
277 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
278 index (cat_id),
279 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
280
281 create table ttrss_filters2_actions(id integer primary key auto_increment,
282 filter_id integer not null,
283 action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
284 action_param varchar(250) not null default '',
285 index (filter_id),
286 foreign key (filter_id) references ttrss_filters2(id) on delete cascade,
287 index (action_id),
288 foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
289
290 create table ttrss_tags (id integer primary key auto_increment,
291 owner_uid integer not null,
292 tag_name varchar(250) not null,
293 post_int_id integer not null,
294 index (post_int_id),
295 foreign key (post_int_id) references ttrss_user_entries(int_id) ON DELETE CASCADE,
296 index (owner_uid),
297 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
298
299 create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
300
301 insert into ttrss_version values (114);
302
303 create table ttrss_enclosures (id integer primary key auto_increment,
304 content_url text not null,
305 content_type varchar(250) not null,
306 post_id integer not null,
307 title text not null,
308 duration text not null,
309 index (post_id),
310 foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
311
312 create index ttrss_enclosures_post_id_idx on ttrss_enclosures(post_id);
313
314 create table ttrss_settings_profiles(id integer primary key auto_increment,
315 title varchar(250) not null,
316 owner_uid integer not null,
317 index (owner_uid),
318 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
319
320 create table ttrss_prefs_types (id integer not null primary key,
321 type_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
322
323 insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
324 insert into ttrss_prefs_types (id, type_name) values (2, 'string');
325 insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
326
327 create table ttrss_prefs_sections (id integer not null primary key,
328 order_id integer not null,
329 section_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
330
331 insert into ttrss_prefs_sections (id, section_name, order_id) values (1, 'General', 0);
332 insert into ttrss_prefs_sections (id, section_name, order_id) values (2, 'Interface', 1);
333 insert into ttrss_prefs_sections (id, section_name, order_id) values (3, 'Advanced', 3);
334 insert into ttrss_prefs_sections (id, section_name, order_id) values (4, 'Digest', 2);
335
336 create table ttrss_prefs (pref_name varchar(250) not null primary key,
337 type_id integer not null,
338 section_id integer not null default 1,
339 short_desc text not null,
340 help_text varchar(250) not null default '',
341 access_level integer not null default 0,
342 def_value text not null,
343 index(type_id),
344 foreign key (type_id) references ttrss_prefs_types(id),
345 index(section_id),
346 foreign key (section_id) references ttrss_prefs_sections(id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
347
348 create index ttrss_prefs_pref_name_idx on ttrss_prefs(pref_name);
349
350 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_OLD_DAYS', 3, '60', 'Purge articles after this number of days (0 - disables)',1);
351
352 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_UPDATE_INTERVAL', 3, '30', 'Default interval between feed updates',1);
353
354 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_ARTICLE_LIMIT', 3, '30', 'Amount of articles to display at once',2);
355
356 insert 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, '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.');
357
358 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'true', 'Enable feed categories',2);
359
360 insert 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);
361
362 insert 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);
363 insert 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);
364
365 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('COMBINED_DISPLAY_MODE', 1, 'true', 'Combined feed display',2, 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
366
367 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_FEEDS', 1, 'false', 'Hide feeds with no unread articles',2);
368
369 insert 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, 'Automatically open next feed with unread articles after marking one as read');
370
371 insert 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);
372
373 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('REVERSE_HEADLINES', 1, 'false', 'Reverse headline order (oldest first)',2);
374
375 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_ENABLE', 1, 'false', 'Enable e-mail digest',4, 'This option enables sending daily digest of new (and unread) headlines on your configured e-mail address');
376
377 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('CONFIRM_FEED_CATCHUP', 1, 'true', 'Confirm marking feed as read',2);
378
379 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('CDM_AUTO_CATCHUP', 1, 'false', 'Automatically mark articles as read',2, 'This option enables marking articles as read automatically while you scroll article list.');
380
381 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
382
383 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_LIMIT', 3, '30', '', 1);
384
385 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
386
387 insert 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, 'Strip all but most common HTML tags when reading articles.');
388
389 insert 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, 'When auto-detecting tags in articles these tags will not be applied (comma-separated list).');
390
391 insert 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);
392
393 insert 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',4);
394
395 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('CDM_EXPANDED', 1, 'true', 'Automatically expand articles in combined mode',2);
396
397 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
398
399 insert 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',2);
400
401 insert 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, 'When this option is enabled, headlines in Special feeds and Labels are grouped by feeds');
402
403 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('STRIP_IMAGES', 1, 'false', 'Do not embed images in articles', 2);
404
405 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
406
407 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_API_ACCESS', 1, 'false', 'Enable external API', 1);
408
409 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_SPECIAL', 1, 'false', '', 1);
410
411 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_LABELS', 1, 'false', '', 1);
412
413 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_UNCAT', 1, 'false', '', 1);
414
415 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_FEEDLIST', 1, 'false', '', 1);
416
417 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_ENABLE_CATS', 1, 'false', '', 1);
418
419 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SHOW_IMAGES', 1, 'false', '', 1);
420
421 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_HIDE_READ', 1, 'false', '', 1);
422
423 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SORT_FEEDS_UNREAD', 1, 'false', '', 1);
424
425 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_THEME_ID', 2, '0', '', 1);
426
427 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('USER_TIMEZONE', 2, 'UTC', 'User timezone', 1);
428
429 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('USER_STYLESHEET', 2, '', 'Customize stylesheet', 2, 'Customize CSS stylesheet to your liking');
430
431 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('SORT_HEADLINES_BY_FEED_DATE', 1, 'false', 'Sort headlines by feed date',2, 'Use feed-specified date to sort headlines instead of local import date.');
432
433 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_BROWSE_CATS', 1, 'true', '', 1);
434
435 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('SSL_CERT_SERIAL', 2, '', 'Login with an SSL certificate',3, 'Click to register your SSL client certificate with tt-rss');
436
437 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_PREFERRED_TIME', 2, '00:00', 'Try to send digests around specified time', 4, 'Uses UTC timezone');
438
439 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_SHOW_EMPTY_CATS', 1, 'false', '', 1);
440
441 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_INCLUDE_CHILDREN', 1, 'false', '', 1);
442
443 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('AUTO_ASSIGN_LABELS', 1, 'true', 'Assign articles to labels automatically', 3);
444
445 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_ENABLED_PLUGINS', 2, '', '', 1);
446
447 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_REVERSE_HEADLINES', 1, 'false', '', 1);
448
449 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('USER_CSS_THEME', 2, '', 'Select theme', 2, 'Select one of the available CSS themes');
450
451 update ttrss_prefs set access_level = 1 where pref_name in ('ON_CATCHUP_SHOW_NEXT_FEED',
452 'SORT_HEADLINES_BY_FEED_DATE',
453 'VFEED_GROUP_BY_FEED',
454 'FRESH_ARTICLE_MAX_AGE',
455 'CDM_EXPANDED',
456 'SHOW_CONTENT_PREVIEW',
457 'AUTO_ASSIGN_LABELS',
458 'HIDE_READ_SHOWS_SPECIAL');
459
460 create table ttrss_user_prefs (
461 owner_uid integer not null,
462 pref_name varchar(250),
463 value longtext not null,
464 profile integer,
465 index (profile),
466 foreign key (profile) references ttrss_settings_profiles(id) ON DELETE CASCADE,
467 index (owner_uid),
468 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
469 index (pref_name),
470 foreign key (pref_name) references ttrss_prefs(pref_name) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
471
472 create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
473 create index ttrss_user_prefs_pref_name_idx on ttrss_user_prefs(pref_name);
474
475 create table ttrss_sessions (id varchar(250) unique not null primary key,
476 data text,
477 expire integer not null,
478 index (id),
479 index (expire)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
480
481 create table ttrss_feedbrowser_cache (
482 feed_url text not null,
483 site_url text not null,
484 title text not null,
485 subscribers integer not null) DEFAULT CHARSET=UTF8;
486
487 create table ttrss_labels2 (id integer not null primary key auto_increment,
488 owner_uid integer not null,
489 caption varchar(250) not null,
490 fg_color varchar(15) not null default '',
491 bg_color varchar(15) not null default '',
492 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
493 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
494
495 create table ttrss_user_labels2 (label_id integer not null,
496 article_id integer not null,
497 foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,
498 foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
499 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
500
501 create table ttrss_access_keys (id integer not null primary key auto_increment,
502 access_key varchar(250) not null,
503 feed_id varchar(250) not null,
504 is_cat bool not null default false,
505 owner_uid integer not null,
506 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
507
508 create table ttrss_linked_instances (id integer not null primary key auto_increment,
509 last_connected datetime not null,
510 last_status_in integer not null,
511 last_status_out integer not null,
512 access_key varchar(250) not null unique,
513 access_url text not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
514
515 create table ttrss_linked_feeds (
516 feed_url text not null,
517 site_url text not null,
518 title text not null,
519 created datetime not null,
520 updated datetime not null,
521 instance_id integer not null,
522 subscribers integer not null,
523 foreign key (instance_id) references ttrss_linked_instances(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
524
525 create table ttrss_plugin_storage (
526 id integer not null auto_increment primary key,
527 name varchar(100) not null,
528 owner_uid integer not null,
529 content longtext not null,
530 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
531
532
533 commit;