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