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