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