]> git.wh0rd.org - tt-rss.git/blob - schema/ttrss_schema_mysql.sql
implement stop action
[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 insert into ttrss_filter_actions (id,name,description) values (8, 'stop',
250 'Stop / Do nothing');
251
252 create table ttrss_filters2(id integer primary key auto_increment,
253 owner_uid integer not null,
254 match_any_rule boolean not null default false,
255 enabled boolean not null default true,
256 inverse bool not null default false,
257 title varchar(250) not null default '',
258 order_id integer not null default 0,
259 index(owner_uid),
260 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
261
262 create table ttrss_filters2_rules(id integer primary key auto_increment,
263 filter_id integer not null references ttrss_filters2(id) on delete cascade,
264 reg_exp varchar(250) not null,
265 inverse bool not null default false,
266 filter_type integer not null,
267 feed_id integer default null,
268 cat_id integer default null,
269 cat_filter boolean not null default false,
270 index (filter_id),
271 foreign key (filter_id) references ttrss_filters2(id) on delete cascade,
272 index (filter_type),
273 foreign key (filter_type) references ttrss_filter_types(id) ON DELETE CASCADE,
274 index (feed_id),
275 foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
276 index (cat_id),
277 foreign key (cat_id) references ttrss_feed_categories(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
278
279 create table ttrss_filters2_actions(id integer primary key auto_increment,
280 filter_id integer not null,
281 action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
282 action_param varchar(250) not null default '',
283 index (filter_id),
284 foreign key (filter_id) references ttrss_filters2(id) on delete cascade,
285 index (action_id),
286 foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
287
288 create table ttrss_tags (id integer primary key auto_increment,
289 owner_uid integer not null,
290 tag_name varchar(250) not null,
291 post_int_id integer not null,
292 index (post_int_id),
293 foreign key (post_int_id) references ttrss_user_entries(int_id) ON DELETE CASCADE,
294 index (owner_uid),
295 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
296
297 create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
298
299 insert into ttrss_version values (113);
300
301 create table ttrss_enclosures (id integer primary key auto_increment,
302 content_url text not null,
303 content_type varchar(250) not null,
304 post_id integer not null,
305 title text not null,
306 duration text not null,
307 index (post_id),
308 foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
309
310 create index ttrss_enclosures_post_id_idx on ttrss_enclosures(post_id);
311
312 create table ttrss_settings_profiles(id integer primary key auto_increment,
313 title varchar(250) not null,
314 owner_uid integer not null,
315 index (owner_uid),
316 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
317
318 create table ttrss_prefs_types (id integer not null primary key,
319 type_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
320
321 insert into ttrss_prefs_types (id, type_name) values (1, 'bool');
322 insert into ttrss_prefs_types (id, type_name) values (2, 'string');
323 insert into ttrss_prefs_types (id, type_name) values (3, 'integer');
324
325 create table ttrss_prefs_sections (id integer not null primary key,
326 order_id integer not null,
327 section_name varchar(100) not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
328
329 insert into ttrss_prefs_sections (id, section_name, order_id) values (1, 'General', 0);
330 insert into ttrss_prefs_sections (id, section_name, order_id) values (2, 'Interface', 1);
331 insert into ttrss_prefs_sections (id, section_name, order_id) values (3, 'Advanced', 3);
332 insert into ttrss_prefs_sections (id, section_name, order_id) values (4, 'Digest', 2);
333
334 create table ttrss_prefs (pref_name varchar(250) not null primary key,
335 type_id integer not null,
336 section_id integer not null default 1,
337 short_desc text not null,
338 help_text varchar(250) not null default '',
339 access_level integer not null default 0,
340 def_value text not null,
341 index(type_id),
342 foreign key (type_id) references ttrss_prefs_types(id),
343 index(section_id),
344 foreign key (section_id) references ttrss_prefs_sections(id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
345
346 create index ttrss_prefs_pref_name_idx on ttrss_prefs(pref_name);
347
348 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);
349
350 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);
351
352 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);
353
354 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.');
355
356 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_CATS', 1, 'true', 'Enable feed categories',2);
357
358 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);
359
360 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);
361 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);
362
363 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');
364
365 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);
366
367 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');
368
369 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);
370
371 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);
372
373 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');
374
375 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);
376
377 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.');
378
379 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
380
381 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_LIMIT', 3, '30', '', 1);
382
383 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
384
385 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.');
386
387 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).');
388
389 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);
390
391 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);
392
393 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);
394
395 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
396
397 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);
398
399 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');
400
401 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);
402
403 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
404
405 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_API_ACCESS', 1, 'false', 'Enable external API', 1);
406
407 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_SPECIAL', 1, 'false', '', 1);
408
409 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_LABELS', 1, 'false', '', 1);
410
411 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_UNCAT', 1, 'false', '', 1);
412
413 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_FEEDLIST', 1, 'false', '', 1);
414
415 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_ENABLE_CATS', 1, 'false', '', 1);
416
417 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SHOW_IMAGES', 1, 'false', '', 1);
418
419 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_HIDE_READ', 1, 'false', '', 1);
420
421 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_SORT_FEEDS_UNREAD', 1, 'false', '', 1);
422
423 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_THEME_ID', 2, '0', '', 1);
424
425 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('USER_TIMEZONE', 2, 'UTC', 'User timezone', 1);
426
427 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');
428
429 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.');
430
431 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_BROWSE_CATS', 1, 'true', '', 1);
432
433 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');
434
435 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');
436
437 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_SHOW_EMPTY_CATS', 1, 'false', '', 1);
438
439 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_INCLUDE_CHILDREN', 1, 'false', '', 1);
440
441 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);
442
443 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_ENABLED_PLUGINS', 2, '', '', 1);
444
445 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_REVERSE_HEADLINES', 1, 'false', '', 1);
446
447 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');
448
449 update ttrss_prefs set access_level = 1 where pref_name in ('ON_CATCHUP_SHOW_NEXT_FEED',
450 'SORT_HEADLINES_BY_FEED_DATE',
451 'VFEED_GROUP_BY_FEED',
452 'FRESH_ARTICLE_MAX_AGE',
453 'CDM_EXPANDED',
454 'SHOW_CONTENT_PREVIEW',
455 'AUTO_ASSIGN_LABELS',
456 'HIDE_READ_SHOWS_SPECIAL');
457
458 create table ttrss_user_prefs (
459 owner_uid integer not null,
460 pref_name varchar(250),
461 value longtext not null,
462 profile integer,
463 index (profile),
464 foreign key (profile) references ttrss_settings_profiles(id) ON DELETE CASCADE,
465 index (owner_uid),
466 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
467 index (pref_name),
468 foreign key (pref_name) references ttrss_prefs(pref_name) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
469
470 create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
471 create index ttrss_user_prefs_pref_name_idx on ttrss_user_prefs(pref_name);
472
473 create table ttrss_sessions (id varchar(250) unique not null primary key,
474 data text,
475 expire integer not null,
476 index (id),
477 index (expire)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
478
479 create table ttrss_feedbrowser_cache (
480 feed_url text not null,
481 site_url text not null,
482 title text not null,
483 subscribers integer not null) DEFAULT CHARSET=UTF8;
484
485 create table ttrss_labels2 (id integer not null primary key auto_increment,
486 owner_uid integer not null,
487 caption varchar(250) not null,
488 fg_color varchar(15) not null default '',
489 bg_color varchar(15) not null default '',
490 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
491 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
492
493 create table ttrss_user_labels2 (label_id integer not null,
494 article_id integer not null,
495 foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,
496 foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
497 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
498
499 create table ttrss_access_keys (id integer not null primary key auto_increment,
500 access_key varchar(250) not null,
501 feed_id varchar(250) not null,
502 is_cat bool not null default false,
503 owner_uid integer not null,
504 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
505
506 create table ttrss_linked_instances (id integer not null primary key auto_increment,
507 last_connected datetime not null,
508 last_status_in integer not null,
509 last_status_out integer not null,
510 access_key varchar(250) not null unique,
511 access_url text not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
512
513 create table ttrss_linked_feeds (
514 feed_url text not null,
515 site_url text not null,
516 title text not null,
517 created datetime not null,
518 updated datetime not null,
519 instance_id integer not null,
520 subscribers integer not null,
521 foreign key (instance_id) references ttrss_linked_instances(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
522
523 create table ttrss_plugin_storage (
524 id integer not null auto_increment primary key,
525 name varchar(100) not null,
526 owner_uid integer not null,
527 content longtext not null,
528 foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
529
530
531 commit;