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