]> git.wh0rd.org - tt-rss.git/blob - schema/ttrss_schema_mysql.sql
9239ef397a0696196d569e28cdd2918735f8bd7b
[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 index(parent_cat),
66 foreign key (parent_cat) references ttrss_feed_categories(id) ON DELETE SET NULL,
67 index(owner_uid),
68 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
69
70 create table ttrss_archived_feeds (id integer not null primary key,
71 owner_uid integer not null,
72 title varchar(200) not null,
73 feed_url text not null,
74 site_url varchar(250) not null default '',
75 index(owner_uid),
76 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
77
78 create table ttrss_counters_cache (
79 feed_id integer not null,
80 owner_uid integer not null,
81 value integer not null default 0,
82 updated datetime not null,
83 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
84 );
85
86 create index ttrss_counters_cache_feed_id_idx on ttrss_counters_cache(feed_id);
87 create index ttrss_counters_cache_owner_uid_idx on ttrss_counters_cache(owner_uid);
88 create index ttrss_counters_cache_value_idx on ttrss_counters_cache(value);
89
90 create table ttrss_cat_counters_cache (
91 feed_id integer not null,
92 owner_uid integer not null,
93 value integer not null default 0,
94 updated datetime not null,
95 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
96 );
97
98 create index ttrss_cat_counters_cache_owner_uid_idx on ttrss_cat_counters_cache(owner_uid);
99
100 create table ttrss_feeds (id integer not null auto_increment primary key,
101 owner_uid integer not null,
102 title varchar(200) not null,
103 cat_id integer default null,
104 feed_url text not null,
105 icon_url varchar(250) not null default '',
106 update_interval integer not null default 0,
107 purge_interval integer not null default 0,
108 last_updated datetime default 0,
109 last_error varchar(250) not null default '',
110 site_url varchar(250) not null default '',
111 auth_login varchar(250) not null default '',
112 auth_pass varchar(250) not null default '',
113 parent_feed integer default null,
114 private bool not null default false,
115 rtl_content bool not null default false,
116 hidden bool not null default false,
117 include_in_digest boolean not null default true,
118 cache_images boolean not null default false,
119 hide_images boolean not null default false,
120 cache_content boolean not null default false,
121 auth_pass_encrypted boolean not null default false,
122 last_viewed datetime default null,
123 last_update_started datetime default null,
124 always_display_enclosures boolean not null default false,
125 update_method integer not null default 0,
126 order_id integer not null default 0,
127 mark_unread_on_update boolean not null default false,
128 update_on_checksum_change boolean not null default false,
129 strip_images boolean not null default false,
130 pubsub_state integer not null default 0,
131 favicon_last_checked datetime default null,
132 index(owner_uid),
133 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
134 index(cat_id),
135 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE SET NULL,
136 index(parent_feed),
137 foreign key (parent_feed) references ttrss_feeds(id) ON DELETE SET NULL) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
138
139 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
140 create index ttrss_feeds_cat_id_idx on ttrss_feeds(cat_id);
141
142 insert into ttrss_feeds (owner_uid, title, feed_url) values
143 (1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.org/releases.rss');
144
145 insert into ttrss_feeds (owner_uid, title, feed_url) values
146 (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.org/forum/rss.php');
147
148 create table ttrss_entries (id integer not null primary key auto_increment,
149 title text not null,
150 guid varchar(255) not null unique,
151 link text not null,
152 updated datetime not null,
153 content longtext not null,
154 content_hash varchar(250) not null,
155 cached_content longtext,
156 no_orig_date bool not null default 0,
157 date_entered datetime not null,
158 date_updated datetime not null,
159 num_comments integer not null default 0,
160 plugin_data longtext,
161 comments varchar(250) not null default '',
162 author varchar(250) not null default '') ENGINE=InnoDB DEFAULT CHARSET=UTF8;
163
164 create index ttrss_entries_date_entered_index on ttrss_entries(date_entered);
165 create index ttrss_entries_guid_index on ttrss_entries(guid);
166 create index ttrss_entries_updated_idx on ttrss_entries(updated);
167
168 create table ttrss_user_entries (
169 int_id integer not null primary key auto_increment,
170 ref_id integer not null,
171 uuid varchar(200) not null,
172 feed_id int,
173 orig_feed_id int,
174 owner_uid integer not null,
175 marked bool not null default 0,
176 published bool not null default 0,
177 tag_cache text not null,
178 label_cache text not null,
179 last_read datetime,
180 score int not null default 0,
181 note longtext,
182 last_marked datetime,
183 last_published datetime,
184 unread bool not null default 1,
185 index (ref_id),
186 foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
187 index (feed_id),
188 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
189 index (orig_feed_id),
190 foreign key (orig_feed_id) references ttrss_archived_feeds(id) ON DELETE SET NULL,
191 index (owner_uid),
192 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
193
194 create index ttrss_user_entries_owner_uid_index on ttrss_user_entries(owner_uid);
195 create index ttrss_user_entries_ref_id_index on ttrss_user_entries(ref_id);
196 create index ttrss_user_entries_feed_id on ttrss_user_entries(feed_id);
197 create index ttrss_user_entries_unread_idx on ttrss_user_entries(unread);
198
199 create table ttrss_entry_comments (id integer not null primary key,
200 ref_id integer not null,
201 owner_uid integer not null,
202 private bool not null default 0,
203 date_entered datetime not null,
204 index (ref_id),
205 foreign key (ref_id) references ttrss_entries(id) ON DELETE CASCADE,
206 index (owner_uid),
207 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
208
209 create table ttrss_filter_types (id integer primary key,
210 name varchar(120) unique not null,
211 description varchar(250) not null unique) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
212
213 insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title');
214 insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content');
215 insert into ttrss_filter_types (id,name,description) values (3, 'both',
216 'Title or Content');
217 insert into ttrss_filter_types (id,name,description) values (4, 'link',
218 'Link');
219 insert into ttrss_filter_types (id,name,description) values (5, 'date',
220 'Article Date');
221 insert into ttrss_filter_types (id,name,description) values (6, 'author', 'Author');
222 insert into ttrss_filter_types (id,name,description) values (7, 'tag', 'Article Tags');
223
224 create table ttrss_filter_actions (id integer not null primary key,
225 name varchar(120) unique not null,
226 description varchar(250) not null unique) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
227
228 insert into ttrss_filter_actions (id,name,description) values (1, 'filter',
229 'Delete article');
230
231 insert into ttrss_filter_actions (id,name,description) values (2, 'catchup',
232 'Mark as read');
233
234 insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
235 'Set starred');
236
237 insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
238 'Assign tags');
239
240 insert into ttrss_filter_actions (id,name,description) values (5, 'publish',
241 'Publish article');
242
243 insert into ttrss_filter_actions (id,name,description) values (6, 'score',
244 'Modify score');
245
246 insert into ttrss_filter_actions (id,name,description) values (7, 'label',
247 'Assign label');
248
249 create table ttrss_filters2(id integer primary key auto_increment,
250 owner_uid integer not null,
251 match_any_rule boolean not null default false,
252 enabled boolean not null default true,
253 inverse bool not null default false,
254 index(owner_uid),
255 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
256
257 create table ttrss_filters2_rules(id integer primary key auto_increment,
258 filter_id integer not null references ttrss_filters2(id) on delete cascade,
259 reg_exp varchar(250) not null,
260 inverse bool not null default false,
261 filter_type integer not null,
262 feed_id integer default null,
263 cat_id integer default null,
264 cat_filter boolean not null default false,
265 index (filter_id),
266 foreign key (filter_id) references ttrss_filters2(id) on delete cascade,
267 index (filter_type),
268 foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,
269 index (feed_id),
270 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
271 index (cat_id),
272 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
273
274 create table ttrss_filters2_actions(id integer primary key auto_increment,
275 filter_id integer not null,
276 action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
277 action_param varchar(250) not null default '',
278 index (filter_id),
279 foreign key (filter_id) references ttrss_filters2(id) on delete cascade,
280 index (action_id),
281 foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
282
283 create table ttrss_tags (id integer primary key auto_increment,
284 owner_uid integer not null,
285 tag_name varchar(250) not null,
286 post_int_id integer not null,
287 index (post_int_id),
288 foreign key (post_int_id) references ttrss_user_entries(int_id) ON DELETE CASCADE,
289 index (owner_uid),
290 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
291
292 create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
293
294 insert into ttrss_version values (107);
295
296 create table ttrss_enclosures (id integer primary key auto_increment,
297 content_url text not null,
298 content_type varchar(250) not null,
299 post_id integer not null,
300 title text not null,
301 duration text not null,
302 index (post_id),
303 foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
304
305 create index ttrss_enclosures_post_id_idx on ttrss_enclosures(post_id);
306
307 create table ttrss_settings_profiles(id integer primary key auto_increment,
308 title varchar(250) not null,
309 owner_uid integer not null,
310 index (owner_uid),
311 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
312
313 create table ttrss_prefs_types (id integer not null primary key,
314 type_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
315
316 insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
317 insert into ttrss_prefs_types (id, type_name) values (2, 'string');
318 insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
319
320 create table ttrss_prefs_sections (id integer not null primary key,
321 order_id integer not null,
322 section_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
323
324 insert into ttrss_prefs_sections (id, section_name, order_id) values (1, 'General', 0);
325 insert into ttrss_prefs_sections (id, section_name, order_id) values (2, 'Interface', 1);
326 insert into ttrss_prefs_sections (id, section_name, order_id) values (3, 'Advanced', 3);
327 insert into ttrss_prefs_sections (id, section_name, order_id) values (4, 'Digest', 2);
328
329 create table ttrss_prefs (pref_name varchar(250) not null primary key,
330 type_id integer not null,
331 section_id integer not null default 1,
332 short_desc text not null,
333 help_text varchar(250) not null default '',
334 access_level integer not null default 0,
335 def_value text not null,
336 index(type_id),
337 foreign key (type_id) references ttrss_prefs_types(id),
338 index(section_id),
339 foreign key (section_id) references ttrss_prefs_sections(id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
340
341 create index ttrss_prefs_pref_name_idx on ttrss_prefs(pref_name);
342
343 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);
344
345 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);
346
347 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);
348
349 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.');
350
351 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'true', 'Enable feed categories',2);
352
353 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);
354
355 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);
356 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);
357
358 insert 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, 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
359
360 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 messages',2);
361
362 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');
363
364 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);
365
366 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);
367
368 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');
369
370 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);
371
372 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.');
373
374 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
375
376 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_LIMIT', 3, '30', '', 1);
377
378 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
379
380 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.');
381
382 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).');
383
384 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);
385
386 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);
387
388 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);
389
390 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
391
392 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);
393
394 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');
395
396 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);
397
398 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
399
400 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_API_ACCESS', 1, 'false', 'Enable external API', 1);
401
402 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_SPECIAL', 1, 'false', '', 1);
403
404 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_LABELS', 1, 'false', '', 1);
405
406 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_UNCAT', 1, 'false', '', 1);
407
408 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_FEEDLIST', 1, 'false', '', 1);
409
410 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_ENABLE_CATS', 1, 'false', '', 1);
411
412 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SHOW_IMAGES', 1, 'false', '', 1);
413
414 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_HIDE_READ', 1, 'false', '', 1);
415
416 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SORT_FEEDS_UNREAD', 1, 'false', '', 1);
417
418 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_THEME_ID', 2, '0', '', 1);
419
420 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('USER_TIMEZONE', 2, 'UTC', 'User timezone', 1);
421
422 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');
423
424 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('SORT_HEADLINES_BY_FEED_DATE', 1, 'true', 'Sort headlines by feed date',2, 'Use feed-specified date to sort headlines instead of local import date.');
425
426 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_BROWSE_CATS', 1, 'true', '', 1);
427
428 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');
429
430 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');
431
432 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_SHOW_EMPTY_CATS', 1, 'false', '', 1);
433
434 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_INCLUDE_CHILDREN', 1, 'false', '', 1);
435
436 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);
437
438 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_ENABLED_PLUGINS', 2, '', '', 1);
439
440 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_REVERSE_HEADLINES', 1, 'false', '', 1);
441
442 update ttrss_prefs set access_level = 1 where pref_name in ('ON_CATCHUP_SHOW_NEXT_FEED',
443 'SORT_HEADLINES_BY_FEED_DATE',
444 'VFEED_GROUP_BY_FEED',
445 'FRESH_ARTICLE_MAX_AGE',
446 'CDM_EXPANDED',
447 'SHOW_CONTENT_PREVIEW',
448 'AUTO_ASSIGN_LABELS',
449 'HIDE_READ_SHOWS_SPECIAL');
450
451 create table ttrss_user_prefs (
452 owner_uid integer not null,
453 pref_name varchar(250),
454 value longtext not null,
455 profile integer,
456 index (profile),
457 foreign key (profile) references ttrss_settings_profiles(id) ON DELETE CASCADE,
458 index (owner_uid),
459 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
460 index (pref_name),
461 foreign key (pref_name) references ttrss_prefs(pref_name) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
462
463 create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
464 create index ttrss_user_prefs_pref_name_idx on ttrss_user_prefs(pref_name);
465
466 create table ttrss_sessions (id varchar(250) unique not null primary key,
467 data text,
468 expire integer not null,
469 index (id),
470 index (expire)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
471
472 create table ttrss_feedbrowser_cache (
473 feed_url text not null,
474 site_url text not null,
475 title text not null,
476 subscribers integer not null) DEFAULT CHARSET=UTF8;
477
478 create table ttrss_labels2 (id integer not null primary key auto_increment,
479 owner_uid integer not null,
480 caption varchar(250) not null,
481 fg_color varchar(15) not null default '',
482 bg_color varchar(15) not null default '',
483 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
484 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
485
486 create table ttrss_user_labels2 (label_id integer not null,
487 article_id integer not null,
488 foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,
489 foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
490 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
491
492 create table ttrss_access_keys (id integer not null primary key auto_increment,
493 access_key varchar(250) not null,
494 feed_id varchar(250) not null,
495 is_cat bool not null default false,
496 owner_uid integer not null,
497 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
498
499 create table ttrss_linked_instances (id integer not null primary key auto_increment,
500 last_connected datetime not null,
501 last_status_in integer not null,
502 last_status_out integer not null,
503 access_key varchar(250) not null unique,
504 access_url text not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
505
506 create table ttrss_linked_feeds (
507 feed_url text not null,
508 site_url text not null,
509 title text not null,
510 created datetime not null,
511 updated datetime not null,
512 instance_id integer not null,
513 subscribers integer not null,
514 foreign key (instance_id) references ttrss_linked_instances(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
515
516 create table ttrss_plugin_storage (
517 id integer not null auto_increment primary key,
518 name varchar(100) not null,
519 owner_uid integer not null,
520 content longtext not null,
521 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
522
523
524 commit;