Restore display when there aren't unread notifications
[friendica.git/.git] / database.sql
1 -- ------------------------------------------
2 -- Friendica 2018.08-dev (The Tazmans Flax-lily)
3 -- DB_UPDATE_VERSION 1283
4 -- ------------------------------------------
5
6
7 --
8 -- TABLE addon
9 --
10 CREATE TABLE IF NOT EXISTS `addon` (
11         `id` int unsigned NOT NULL auto_increment COMMENT '',
12         `name` varchar(50) NOT NULL DEFAULT '' COMMENT 'addon base (file)name',
13         `version` varchar(50) NOT NULL DEFAULT '' COMMENT 'currently unused',
14         `installed` boolean NOT NULL DEFAULT '0' COMMENT 'currently always 1',
15         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'currently unused',
16         `timestamp` int unsigned NOT NULL DEFAULT 0 COMMENT 'file timestamp to check for reloads',
17         `plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '1 = has admin config, 0 = has no admin config',
18          PRIMARY KEY(`id`),
19          UNIQUE INDEX `name` (`name`)
20 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registered addons';
21
22 --
23 -- TABLE attach
24 --
25 CREATE TABLE IF NOT EXISTS `attach` (
26         `id` int unsigned NOT NULL auto_increment COMMENT 'generated index',
27         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
28         `hash` varchar(64) NOT NULL DEFAULT '' COMMENT 'hash',
29         `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'filename of original',
30         `filetype` varchar(64) NOT NULL DEFAULT '' COMMENT 'mimetype',
31         `filesize` int unsigned NOT NULL DEFAULT 0 COMMENT 'size in bytes',
32         `data` longblob NOT NULL COMMENT 'file data',
33         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
34         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
35         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>',
36         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
37         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
38         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
39          PRIMARY KEY(`id`)
40 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='file attachments';
41
42 --
43 -- TABLE auth_codes
44 --
45 CREATE TABLE IF NOT EXISTS `auth_codes` (
46         `id` varchar(40) NOT NULL COMMENT '',
47         `client_id` varchar(20) NOT NULL DEFAULT '' COMMENT '',
48         `redirect_uri` varchar(200) NOT NULL DEFAULT '' COMMENT '',
49         `expires` int NOT NULL DEFAULT 0 COMMENT '',
50         `scope` varchar(250) NOT NULL DEFAULT '' COMMENT '',
51          PRIMARY KEY(`id`)
52 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth usage';
53
54 --
55 -- TABLE cache
56 --
57 CREATE TABLE IF NOT EXISTS `cache` (
58         `k` varbinary(255) NOT NULL COMMENT 'cache key',
59         `v` mediumtext COMMENT 'cached serialized value',
60         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
61         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache insertion',
62          PRIMARY KEY(`k`),
63          INDEX `k_expires` (`k`,`expires`)
64 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data';
65
66 --
67 -- TABLE challenge
68 --
69 CREATE TABLE IF NOT EXISTS `challenge` (
70         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
71         `challenge` varchar(255) NOT NULL DEFAULT '' COMMENT '',
72         `dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
73         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
74         `type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
75         `last_update` varchar(255) NOT NULL DEFAULT '' COMMENT '',
76          PRIMARY KEY(`id`)
77 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
78
79 --
80 -- TABLE clients
81 --
82 CREATE TABLE IF NOT EXISTS `clients` (
83         `client_id` varchar(20) NOT NULL COMMENT '',
84         `pw` varchar(20) NOT NULL DEFAULT '' COMMENT '',
85         `redirect_uri` varchar(200) NOT NULL DEFAULT '' COMMENT '',
86         `name` text COMMENT '',
87         `icon` text COMMENT '',
88         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
89          PRIMARY KEY(`client_id`)
90 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth usage';
91
92 --
93 -- TABLE config
94 --
95 CREATE TABLE IF NOT EXISTS `config` (
96         `id` int unsigned NOT NULL auto_increment COMMENT '',
97         `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
98         `k` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
99         `v` mediumtext COMMENT '',
100          PRIMARY KEY(`id`),
101          UNIQUE INDEX `cat_k` (`cat`,`k`)
102 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='main configuration storage';
103
104 --
105 -- TABLE contact
106 --
107 CREATE TABLE IF NOT EXISTS `contact` (
108         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
109         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
110         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
111         `self` boolean NOT NULL DEFAULT '0' COMMENT '1 if the contact is the user him/her self',
112         `remote_self` boolean NOT NULL DEFAULT '0' COMMENT '',
113         `rel` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'The kind of the relation between the user and the contact',
114         `duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
115         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network protocol of the contact',
116         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this contact is known by',
117         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT 'Nick- and user name of the contact',
118         `location` varchar(255) NOT NULL DEFAULT '' COMMENT '',
119         `about` text COMMENT '',
120         `keywords` text COMMENT 'public keywords (interests) of the contact',
121         `gender` varchar(32) NOT NULL DEFAULT '' COMMENT '',
122         `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
123         `attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
124         `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
125         `photo` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
126         `thumb` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)',
127         `micro` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (micro size)',
128         `site-pubkey` text COMMENT '',
129         `issued-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
130         `dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
131         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
132         `nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
133         `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
134         `alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
135         `pubkey` text COMMENT 'RSA public key 4096 bit',
136         `prvkey` text COMMENT 'RSA private key 4096 bit',
137         `batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
138         `request` varchar(255) COMMENT '',
139         `notify` varchar(255) COMMENT '',
140         `poll` varchar(255) COMMENT '',
141         `confirm` varchar(255) COMMENT '',
142         `poco` varchar(255) COMMENT '',
143         `aes_allow` boolean NOT NULL DEFAULT '0' COMMENT '',
144         `ret-aes` boolean NOT NULL DEFAULT '0' COMMENT '',
145         `usehub` boolean NOT NULL DEFAULT '0' COMMENT '',
146         `subhub` boolean NOT NULL DEFAULT '0' COMMENT '',
147         `hub-verify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
148         `last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last try to update the contact info',
149         `success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful contact update',
150         `failure_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed update',
151         `name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
152         `uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
153         `avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
154         `term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
155         `last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'date of the last post',
156         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
157         `blocked` boolean NOT NULL DEFAULT '1' COMMENT '',
158         `readonly` boolean NOT NULL DEFAULT '0' COMMENT 'posts of the contact are readonly',
159         `writable` boolean NOT NULL DEFAULT '0' COMMENT '',
160         `forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a forum',
161         `prv` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a private group',
162         `contact-type` tinyint NOT NULL DEFAULT 0 COMMENT '',
163         `hidden` boolean NOT NULL DEFAULT '0' COMMENT '',
164         `archive` boolean NOT NULL DEFAULT '0' COMMENT '',
165         `pending` boolean NOT NULL DEFAULT '1' COMMENT '',
166         `rating` tinyint NOT NULL DEFAULT 0 COMMENT '',
167         `reason` text COMMENT '',
168         `closeness` tinyint unsigned NOT NULL DEFAULT 99 COMMENT '',
169         `info` mediumtext COMMENT '',
170         `profile-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
171         `bdyear` varchar(4) NOT NULL DEFAULT '' COMMENT '',
172         `bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
173         `notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
174         `fetch_further_information` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
175         `ffi_keyword_blacklist` text COMMENT '',
176          PRIMARY KEY(`id`),
177          INDEX `uid_name` (`uid`,`name`(190)),
178          INDEX `self_uid` (`self`,`uid`),
179          INDEX `alias_uid` (`alias`(32),`uid`),
180          INDEX `pending_uid` (`pending`,`uid`),
181          INDEX `blocked_uid` (`blocked`,`uid`),
182          INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
183          INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
184          INDEX `addr_uid` (`addr`(32),`uid`),
185          INDEX `nurl_uid` (`nurl`(32),`uid`),
186          INDEX `nick_uid` (`nick`(32),`uid`),
187          INDEX `dfrn-id` (`dfrn-id`(64)),
188          INDEX `issued-id` (`issued-id`(64))
189 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='contact table';
190
191 --
192 -- TABLE conv
193 --
194 CREATE TABLE IF NOT EXISTS `conv` (
195         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
196         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this conversation',
197         `recips` text COMMENT 'sender_handle;recipient_handle',
198         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
199         `creator` varchar(255) NOT NULL DEFAULT '' COMMENT 'handle of creator',
200         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation timestamp',
201         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'edited timestamp',
202         `subject` text COMMENT 'subject of initial message',
203          PRIMARY KEY(`id`),
204          INDEX `uid` (`uid`)
205 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages';
206
207 --
208 -- TABLE conversation
209 --
210 CREATE TABLE IF NOT EXISTS `conversation` (
211         `item-uri` varbinary(255) NOT NULL COMMENT 'Original URI of the item - unrelated to the table with the same name',
212         `reply-to-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT 'URI to which this item is a reply',
213         `conversation-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT 'GNU Social conversation URI',
214         `conversation-href` varbinary(255) NOT NULL DEFAULT '' COMMENT 'GNU Social conversation link',
215         `protocol` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'The protocol of the item',
216         `source` mediumtext COMMENT 'Original source',
217         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Receiving date',
218          PRIMARY KEY(`item-uri`),
219          INDEX `conversation-uri` (`conversation-uri`),
220          INDEX `received` (`received`)
221 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Raw data and structure information for messages';
222
223 --
224 -- TABLE event
225 --
226 CREATE TABLE IF NOT EXISTS `event` (
227         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
228         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
229         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
230         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact_id (ID of the contact in contact table)',
231         `uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
232         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
233         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
234         `start` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event start time',
235         `finish` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event end time',
236         `summary` text COMMENT 'short description or title of the event',
237         `desc` text COMMENT 'event description',
238         `location` text COMMENT 'event location',
239         `type` varchar(20) NOT NULL DEFAULT '' COMMENT 'event or birthday',
240         `nofinish` boolean NOT NULL DEFAULT '0' COMMENT 'if event does have no end this is 1',
241         `adjust` boolean NOT NULL DEFAULT '1' COMMENT 'adjust to timezone of the recipient (0 or 1)',
242         `ignore` boolean NOT NULL DEFAULT '0' COMMENT '0 or 1',
243         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
244         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
245         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
246         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
247          PRIMARY KEY(`id`),
248          INDEX `uid_start` (`uid`,`start`)
249 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Events';
250
251 --
252 -- TABLE fcontact
253 --
254 CREATE TABLE IF NOT EXISTS `fcontact` (
255         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
256         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'unique id',
257         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
258         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
259         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
260         `request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
261         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
262         `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
263         `batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
264         `notify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
265         `poll` varchar(255) NOT NULL DEFAULT '' COMMENT '',
266         `confirm` varchar(255) NOT NULL DEFAULT '' COMMENT '',
267         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
268         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
269         `alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
270         `pubkey` text COMMENT '',
271         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
272          PRIMARY KEY(`id`),
273          INDEX `addr` (`addr`(32)),
274          UNIQUE INDEX `url` (`url`(190))
275 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Diaspora compatible contacts - used in the Diaspora implementation';
276
277 --
278 -- TABLE fsuggest
279 --
280 CREATE TABLE IF NOT EXISTS `fsuggest` (
281         `id` int unsigned NOT NULL auto_increment COMMENT '',
282         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
283         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
284         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
285         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
286         `request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
287         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
288         `note` text COMMENT '',
289         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
290          PRIMARY KEY(`id`)
291 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='friend suggestion stuff';
292
293 --
294 -- TABLE gcign
295 --
296 CREATE TABLE IF NOT EXISTS `gcign` (
297         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
298         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Local User id',
299         `gcid` int unsigned NOT NULL DEFAULT 0 COMMENT 'gcontact.id of ignored contact',
300          PRIMARY KEY(`id`),
301          INDEX `uid` (`uid`),
302          INDEX `gcid` (`gcid`)
303 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='contacts ignored by friend suggestions';
304
305 --
306 -- TABLE gcontact
307 --
308 CREATE TABLE IF NOT EXISTS `gcontact` (
309         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
310         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this contact is known by',
311         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT 'Nick- and user name of the contact',
312         `url` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link to the contacts profile page',
313         `nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
314         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link to the profile photo',
315         `connect` varchar(255) NOT NULL DEFAULT '' COMMENT '',
316         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
317         `updated` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
318         `last_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
319         `last_failure` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
320         `location` varchar(255) NOT NULL DEFAULT '' COMMENT '',
321         `about` text COMMENT '',
322         `keywords` text COMMENT 'puplic keywords (interests)',
323         `gender` varchar(32) NOT NULL DEFAULT '' COMMENT '',
324         `birthday` varchar(32) NOT NULL DEFAULT '0001-01-01' COMMENT '',
325         `community` boolean NOT NULL DEFAULT '0' COMMENT '1 if contact is forum account',
326         `contact-type` tinyint NOT NULL DEFAULT -1 COMMENT '',
327         `hide` boolean NOT NULL DEFAULT '0' COMMENT '1 = should be hidden from search',
328         `nsfw` boolean NOT NULL DEFAULT '0' COMMENT '1 = contact posts nsfw content',
329         `network` char(4) NOT NULL DEFAULT '' COMMENT 'social network protocol',
330         `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
331         `notify` varchar(255) COMMENT '',
332         `alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
333         `generation` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
334         `server_url` varchar(255) NOT NULL DEFAULT '' COMMENT 'baseurl of the contacts server',
335          PRIMARY KEY(`id`),
336          UNIQUE INDEX `nurl` (`nurl`(190)),
337          INDEX `name` (`name`(64)),
338          INDEX `nick` (`nick`(32)),
339          INDEX `addr` (`addr`(64)),
340          INDEX `hide_network_updated` (`hide`,`network`,`updated`),
341          INDEX `updated` (`updated`)
342 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='global contacts';
343
344 --
345 -- TABLE glink
346 --
347 CREATE TABLE IF NOT EXISTS `glink` (
348         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
349         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
350         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
351         `gcid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
352         `zcid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
353         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
354          PRIMARY KEY(`id`),
355          UNIQUE INDEX `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
356          INDEX `gcid` (`gcid`)
357 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='\'friends of friends\' linkages derived from poco';
358
359 --
360 -- TABLE group
361 --
362 CREATE TABLE IF NOT EXISTS `group` (
363         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
364         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
365         `visible` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the member list is not private',
366         `deleted` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the group has been deleted',
367         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'human readable name of group',
368          PRIMARY KEY(`id`),
369          INDEX `uid` (`uid`)
370 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy groups, group info';
371
372 --
373 -- TABLE group_member
374 --
375 CREATE TABLE IF NOT EXISTS `group_member` (
376         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
377         `gid` int unsigned NOT NULL DEFAULT 0 COMMENT 'groups.id of the associated group',
378         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id of the member assigned to the associated group',
379          PRIMARY KEY(`id`),
380          INDEX `contactid` (`contact-id`),
381          UNIQUE INDEX `gid_contactid` (`gid`,`contact-id`)
382 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy groups, member info';
383
384 --
385 -- TABLE gserver
386 --
387 CREATE TABLE IF NOT EXISTS `gserver` (
388         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
389         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
390         `nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
391         `version` varchar(255) NOT NULL DEFAULT '' COMMENT '',
392         `site_name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
393         `info` text COMMENT '',
394         `register_policy` tinyint NOT NULL DEFAULT 0 COMMENT '',
395         `registered-users` int unsigned NOT NULL DEFAULT 0 COMMENT 'Number of registered users',
396         `poco` varchar(255) NOT NULL DEFAULT '' COMMENT '',
397         `noscrape` varchar(255) NOT NULL DEFAULT '' COMMENT '',
398         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
399         `platform` varchar(255) NOT NULL DEFAULT '' COMMENT '',
400         `relay-subscribe` boolean NOT NULL DEFAULT '0' COMMENT 'Has the server subscribed to the relay system',
401         `relay-scope` varchar(10) NOT NULL DEFAULT '' COMMENT 'The scope of messages that the server wants to get',
402         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
403         `last_poco_query` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
404         `last_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
405         `last_failure` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
406          PRIMARY KEY(`id`),
407          UNIQUE INDEX `nurl` (`nurl`(190))
408 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Global servers';
409
410 --
411 -- TABLE gserver-tag
412 --
413 CREATE TABLE IF NOT EXISTS `gserver-tag` (
414         `gserver-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'The id of the gserver',
415         `tag` varchar(100) NOT NULL DEFAULT '' COMMENT 'Tag that the server has subscribed',
416          PRIMARY KEY(`gserver-id`,`tag`),
417          INDEX `tag` (`tag`)
418 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Tags that the server has subscribed';
419
420 --
421 -- TABLE hook
422 --
423 CREATE TABLE IF NOT EXISTS `hook` (
424         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
425         `hook` varbinary(100) NOT NULL DEFAULT '' COMMENT 'name of hook',
426         `file` varbinary(200) NOT NULL DEFAULT '' COMMENT 'relative filename of hook handler',
427         `function` varbinary(200) NOT NULL DEFAULT '' COMMENT 'function name of hook handler',
428         `priority` smallint unsigned NOT NULL DEFAULT 0 COMMENT 'not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order',
429          PRIMARY KEY(`id`),
430          UNIQUE INDEX `hook_file_function` (`hook`,`file`,`function`)
431 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='addon hook registry';
432
433 --
434 -- TABLE intro
435 --
436 CREATE TABLE IF NOT EXISTS `intro` (
437         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
438         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
439         `fid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
440         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
441         `knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
442         `duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
443         `note` text COMMENT '',
444         `hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
445         `datetime` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
446         `blocked` boolean NOT NULL DEFAULT '1' COMMENT '',
447         `ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
448          PRIMARY KEY(`id`)
449 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
450
451 --
452 -- TABLE item
453 --
454 CREATE TABLE IF NOT EXISTS `item` (
455         `id` int unsigned NOT NULL auto_increment,
456         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this item',
457         `uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
458         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the item uri',
459         `uri-hash` varchar(80) NOT NULL DEFAULT '' COMMENT 'RIPEMD-128 hash from uri',
460         `parent` int unsigned NOT NULL DEFAULT 0 COMMENT 'item.id of the parent to this item if it is a reply of some form; otherwise this must be set to the id of this item',
461         `parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT 'uri of the parent to this item',
462         `parent-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the parent uri',
463         `thr-parent` varchar(255) NOT NULL DEFAULT '' COMMENT 'If the parent of this item is not the top-level item in the conversation, the uri of the immediate parent; otherwise set to parent-uri',
464         `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
465         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation timestamp.',
466         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last edit (default is created)',
467         `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last comment/reply to this item',
468         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime',
469         `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date that something in the conversation changed, indicating clients should fetch the conversation again',
470         `gravity` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
471         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network from where the item comes from',
472         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the owner of this item',
473         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
474         `icid` int unsigned COMMENT 'Id of the item-content table entry that contains the whole item content',
475         `iaid` int unsigned COMMENT 'Id of the item-activity table entry that contains the activity data',
476         `extid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
477         `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
478         `global` boolean NOT NULL DEFAULT '0' COMMENT '',
479         `private` boolean NOT NULL DEFAULT '0' COMMENT 'distribution is restricted',
480         `visible` boolean NOT NULL DEFAULT '0' COMMENT '',
481         `moderated` boolean NOT NULL DEFAULT '0' COMMENT '',
482         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'item has been deleted',
483         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id which owns this copy of the item',
484         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
485         `wall` boolean NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid',
486         `origin` boolean NOT NULL DEFAULT '0' COMMENT 'item originated at this site',
487         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
488         `starred` boolean NOT NULL DEFAULT '0' COMMENT 'item has been favourited',
489         `unseen` boolean NOT NULL DEFAULT '1' COMMENT 'item has not been seen',
490         `mention` boolean NOT NULL DEFAULT '0' COMMENT 'The owner of this item was mentioned in it',
491         `forum_mode` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
492         `psid` int unsigned COMMENT 'ID of the permission set of this post',
493         `resource-id` varchar(32) NOT NULL DEFAULT '' COMMENT 'Used to link other tables to items, it identifies the linked resource (e.g. photo) and if set must also set resource_type',
494         `event-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Used to link to the event.id',
495         `attach` mediumtext COMMENT 'JSON structure representing attachments to this item',
496         `allow_cid` mediumtext COMMENT 'Deprecated',
497         `allow_gid` mediumtext COMMENT 'Deprecated',
498         `deny_cid` mediumtext COMMENT 'Deprecated',
499         `deny_gid` mediumtext COMMENT 'Deprecated',
500         `postopts` text COMMENT 'Deprecated',
501         `inform` mediumtext COMMENT 'Deprecated',
502         `type` varchar(20) COMMENT 'Deprecated',
503         `bookmark` boolean COMMENT 'Deprecated',
504         `file` mediumtext COMMENT 'Deprecated',
505         `location` varchar(255) COMMENT 'Deprecated',
506         `coord` varchar(255) COMMENT 'Deprecated',
507         `tag` mediumtext COMMENT 'Deprecated',
508         `plink` varchar(255) COMMENT 'Deprecated',
509         `title` varchar(255) COMMENT 'Deprecated',
510         `content-warning` varchar(255) COMMENT 'Deprecated',
511         `body` mediumtext COMMENT 'Deprecated',
512         `app` varchar(255) COMMENT 'Deprecated',
513         `verb` varchar(100) COMMENT 'Deprecated',
514         `object-type` varchar(100) COMMENT 'Deprecated',
515         `object` text COMMENT 'Deprecated',
516         `target-type` varchar(100) COMMENT 'Deprecated',
517         `target` text COMMENT 'Deprecated',
518         `author-name` varchar(255) COMMENT 'Deprecated',
519         `author-link` varchar(255) COMMENT 'Deprecated',
520         `author-avatar` varchar(255) COMMENT 'Deprecated',
521         `owner-name` varchar(255) COMMENT 'Deprecated',
522         `owner-link` varchar(255) COMMENT 'Deprecated',
523         `owner-avatar` varchar(255) COMMENT 'Deprecated',
524         `rendered-hash` varchar(32) COMMENT 'Deprecated',
525         `rendered-html` mediumtext COMMENT 'Deprecated',
526          PRIMARY KEY(`id`),
527          INDEX `guid` (`guid`(191)),
528          INDEX `uri` (`uri`(191)),
529          INDEX `parent` (`parent`),
530          INDEX `parent-uri` (`parent-uri`(191)),
531          INDEX `extid` (`extid`(191)),
532          INDEX `uid_id` (`uid`,`id`),
533          INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
534          INDEX `uid_created` (`uid`,`created`),
535          INDEX `uid_commented` (`uid`,`commented`),
536          INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
537          INDEX `uid_network_received` (`uid`,`network`,`received`),
538          INDEX `uid_network_commented` (`uid`,`network`,`commented`),
539          INDEX `uid_thrparent` (`uid`,`thr-parent`(190)),
540          INDEX `uid_parenturi` (`uid`,`parent-uri`(190)),
541          INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
542          INDEX `authorid_created` (`author-id`,`created`),
543          INDEX `ownerid` (`owner-id`),
544          INDEX `uid_uri` (`uid`,`uri`(190)),
545          INDEX `resource-id` (`resource-id`),
546          INDEX `deleted_changed` (`deleted`,`changed`),
547          INDEX `uid_wall_changed` (`uid`,`wall`,`changed`),
548          INDEX `uid_eventid` (`uid`,`event-id`),
549          INDEX `icid` (`icid`),
550          INDEX `iaid` (`iaid`),
551          INDEX `psid_wall` (`psid`,`wall`)
552 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Structure for all posts';
553
554 --
555 -- TABLE item-activity
556 --
557 CREATE TABLE IF NOT EXISTS `item-activity` (
558         `id` int unsigned NOT NULL auto_increment,
559         `uri` varchar(255) COMMENT '',
560         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the item uri',
561         `uri-hash` varchar(80) NOT NULL DEFAULT '' COMMENT 'RIPEMD-128 hash from uri',
562         `activity` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
563          PRIMARY KEY(`id`),
564          UNIQUE INDEX `uri-hash` (`uri-hash`),
565          INDEX `uri` (`uri`(191))
566 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activities for items';
567
568 --
569 -- TABLE item-content
570 --
571 CREATE TABLE IF NOT EXISTS `item-content` (
572         `id` int unsigned NOT NULL auto_increment,
573         `uri` varchar(255) COMMENT '',
574         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the item uri',
575         `uri-plink-hash` varchar(80) NOT NULL DEFAULT '' COMMENT 'RIPEMD-128 hash from uri',
576         `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'item title',
577         `content-warning` varchar(255) NOT NULL DEFAULT '' COMMENT '',
578         `body` mediumtext COMMENT 'item body content',
579         `location` varchar(255) NOT NULL DEFAULT '' COMMENT 'text location where this item originated',
580         `coord` varchar(255) NOT NULL DEFAULT '' COMMENT 'longitude/latitude pair representing location where this item originated',
581         `language` text COMMENT 'Language information about this post',
582         `app` varchar(255) NOT NULL DEFAULT '' COMMENT 'application which generated this item',
583         `rendered-hash` varchar(32) NOT NULL DEFAULT '' COMMENT '',
584         `rendered-html` mediumtext COMMENT 'item.body converted to html',
585         `object-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams object type',
586         `object` text COMMENT 'JSON encoded object structure unless it is an implied object (normal post)',
587         `target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
588         `target` text COMMENT 'JSON encoded target structure if used',
589         `plink` varchar(255) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
590         `verb` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams verb',
591          PRIMARY KEY(`id`),
592          UNIQUE INDEX `uri-plink-hash` (`uri-plink-hash`),
593          INDEX `uri` (`uri`(191))
594 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Content for all posts';
595
596 --
597 -- TABLE item-delivery-data
598 --
599 CREATE TABLE IF NOT EXISTS `item-delivery-data` (
600         `iid` int unsigned NOT NULL COMMENT 'Item id',
601         `postopts` text COMMENT 'External post connectors add their network name to this comma-separated string to identify that they should be delivered to these networks during delivery',
602         `inform` mediumtext COMMENT 'Additional receivers of the linked item',
603          PRIMARY KEY(`iid`)
604 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for items';
605
606 --
607 -- TABLE item-uri
608 --
609 CREATE TABLE IF NOT EXISTS `item-uri` (
610         `id` int unsigned NOT NULL auto_increment,
611         `uri` varbinary(255) NOT NULL COMMENT 'URI of an item',
612         `guid` varbinary(255) COMMENT 'A unique identifier for an item',
613          PRIMARY KEY(`id`),
614          UNIQUE INDEX `uri` (`uri`),
615          INDEX `guid` (`guid`)
616 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='URI and GUID for items';
617
618 --
619 -- TABLE locks
620 --
621 CREATE TABLE IF NOT EXISTS `locks` (
622         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
623         `name` varchar(128) NOT NULL DEFAULT '' COMMENT '',
624         `locked` boolean NOT NULL DEFAULT '0' COMMENT '',
625         `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process ID',
626         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
627          PRIMARY KEY(`id`),
628          INDEX `name_expires` (`name`,`expires`)
629 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
630
631 --
632 -- TABLE mail
633 --
634 CREATE TABLE IF NOT EXISTS `mail` (
635         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
636         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
637         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
638         `from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
639         `from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
640         `from-url` varchar(255) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender',
641         `contact-id` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact.id',
642         `convid` int unsigned NOT NULL DEFAULT 0 COMMENT 'conv.id',
643         `title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
644         `body` mediumtext COMMENT '',
645         `seen` boolean NOT NULL DEFAULT '0' COMMENT 'if message visited it is 1',
646         `reply` boolean NOT NULL DEFAULT '0' COMMENT '',
647         `replied` boolean NOT NULL DEFAULT '0' COMMENT '',
648         `unknown` boolean NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1',
649         `uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
650         `parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
651         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message',
652          PRIMARY KEY(`id`),
653          INDEX `uid_seen` (`uid`,`seen`),
654          INDEX `convid` (`convid`),
655          INDEX `uri` (`uri`(64)),
656          INDEX `parent-uri` (`parent-uri`(64)),
657          INDEX `contactid` (`contact-id`(32))
658 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages';
659
660 --
661 -- TABLE mailacct
662 --
663 CREATE TABLE IF NOT EXISTS `mailacct` (
664         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
665         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
666         `server` varchar(255) NOT NULL DEFAULT '' COMMENT '',
667         `port` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
668         `ssltype` varchar(16) NOT NULL DEFAULT '' COMMENT '',
669         `mailbox` varchar(255) NOT NULL DEFAULT '' COMMENT '',
670         `user` varchar(255) NOT NULL DEFAULT '' COMMENT '',
671         `pass` text COMMENT '',
672         `reply_to` varchar(255) NOT NULL DEFAULT '' COMMENT '',
673         `action` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
674         `movetofolder` varchar(255) NOT NULL DEFAULT '' COMMENT '',
675         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
676         `last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
677          PRIMARY KEY(`id`)
678 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Mail account data for fetching mails';
679
680 --
681 -- TABLE manage
682 --
683 CREATE TABLE IF NOT EXISTS `manage` (
684         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
685         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
686         `mid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
687          PRIMARY KEY(`id`),
688          UNIQUE INDEX `uid_mid` (`uid`,`mid`)
689 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='table of accounts that can manage each other';
690
691 --
692 -- TABLE notify
693 --
694 CREATE TABLE IF NOT EXISTS `notify` (
695         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
696         `hash` varchar(64) NOT NULL DEFAULT '' COMMENT '',
697         `type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
698         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
699         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
700         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
701         `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
702         `msg` mediumtext COMMENT '',
703         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
704         `link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
705         `iid` int unsigned NOT NULL DEFAULT 0 COMMENT 'item.id',
706         `parent` int unsigned NOT NULL DEFAULT 0 COMMENT '',
707         `seen` boolean NOT NULL DEFAULT '0' COMMENT '',
708         `verb` varchar(100) NOT NULL DEFAULT '' COMMENT '',
709         `otype` varchar(10) NOT NULL DEFAULT '' COMMENT '',
710         `name_cache` tinytext COMMENT 'Cached bbcode parsing of name',
711         `msg_cache` mediumtext COMMENT 'Cached bbcode parsing of msg',
712          PRIMARY KEY(`id`),
713          INDEX `hash_uid` (`hash`,`uid`),
714          INDEX `seen_uid_date` (`seen`,`uid`,`date`),
715          INDEX `uid_date` (`uid`,`date`),
716          INDEX `uid_type_link` (`uid`,`type`,`link`(190))
717 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='notifications';
718
719 --
720 -- TABLE notify-threads
721 --
722 CREATE TABLE IF NOT EXISTS `notify-threads` (
723         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
724         `notify-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
725         `master-parent-item` int unsigned NOT NULL DEFAULT 0 COMMENT '',
726         `parent-item` int unsigned NOT NULL DEFAULT 0 COMMENT '',
727         `receiver-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
728          PRIMARY KEY(`id`)
729 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
730
731 --
732 -- TABLE oembed
733 --
734 CREATE TABLE IF NOT EXISTS `oembed` (
735         `url` varbinary(255) NOT NULL COMMENT 'page url',
736         `maxwidth` mediumint unsigned NOT NULL COMMENT 'Maximum width passed to Oembed',
737         `content` mediumtext COMMENT 'OEmbed data of the page',
738         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
739          PRIMARY KEY(`url`,`maxwidth`),
740          INDEX `created` (`created`)
741 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='cache for OEmbed queries';
742
743 --
744 -- TABLE openwebauth-token
745 --
746 CREATE TABLE IF NOT EXISTS `openwebauth-token` (
747         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
748         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
749         `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'Verify type',
750         `token` varchar(255) NOT NULL DEFAULT '' COMMENT 'A generated token',
751         `meta` varchar(255) NOT NULL DEFAULT '' COMMENT '',
752         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
753          PRIMARY KEY(`id`)
754 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Store OpenWebAuth token to verify contacts';
755
756 --
757 -- TABLE parsed_url
758 --
759 CREATE TABLE IF NOT EXISTS `parsed_url` (
760         `url` varbinary(255) NOT NULL COMMENT 'page url',
761         `guessing` boolean NOT NULL DEFAULT '0' COMMENT 'is the \'guessing\' mode active?',
762         `oembed` boolean NOT NULL DEFAULT '0' COMMENT 'is the data the result of oembed?',
763         `content` mediumtext COMMENT 'page data',
764         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
765          PRIMARY KEY(`url`,`guessing`,`oembed`),
766          INDEX `created` (`created`)
767 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='cache for \'parse_url\' queries';
768
769 --
770 -- TABLE participation
771 --
772 CREATE TABLE IF NOT EXISTS `participation` (
773         `iid` int unsigned NOT NULL COMMENT '',
774         `server` varchar(60) NOT NULL COMMENT '',
775         `cid` int unsigned NOT NULL COMMENT '',
776         `fid` int unsigned NOT NULL COMMENT '',
777          PRIMARY KEY(`iid`,`server`)
778 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Storage for participation messages from Diaspora';
779
780 --
781 -- TABLE pconfig
782 --
783 CREATE TABLE IF NOT EXISTS `pconfig` (
784         `id` int unsigned NOT NULL auto_increment COMMENT '',
785         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
786         `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
787         `k` varbinary(100) NOT NULL DEFAULT '' COMMENT '',
788         `v` mediumtext COMMENT '',
789          PRIMARY KEY(`id`),
790          UNIQUE INDEX `uid_cat_k` (`uid`,`cat`,`k`)
791 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='personal (per user) configuration storage';
792
793 --
794 -- TABLE permissionset
795 --
796 CREATE TABLE IF NOT EXISTS `permissionset` (
797         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
798         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id of this permission set',
799         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
800         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
801         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
802         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
803          PRIMARY KEY(`id`),
804          INDEX `uid_allow_cid_allow_gid_deny_cid_deny_gid` (`allow_cid`(50),`allow_gid`(30),`deny_cid`(50),`deny_gid`(30))
805 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
806
807 --
808 -- TABLE photo
809 --
810 CREATE TABLE IF NOT EXISTS `photo` (
811         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
812         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
813         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
814         `guid` char(16) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this photo',
815         `resource-id` char(32) NOT NULL DEFAULT '' COMMENT '',
816         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation date',
817         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edited date',
818         `title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
819         `desc` text COMMENT '',
820         `album` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the album to which the photo belongs',
821         `filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
822         `type` varchar(30) NOT NULL DEFAULT 'image/jpeg',
823         `height` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
824         `width` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
825         `datasize` int unsigned NOT NULL DEFAULT 0 COMMENT '',
826         `data` mediumblob NOT NULL COMMENT '',
827         `scale` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
828         `profile` boolean NOT NULL DEFAULT '0' COMMENT '',
829         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
830         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
831         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
832         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
833          PRIMARY KEY(`id`),
834          INDEX `contactid` (`contact-id`),
835          INDEX `uid_contactid` (`uid`,`contact-id`),
836          INDEX `uid_profile` (`uid`,`profile`),
837          INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
838          INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`,`created`),
839          INDEX `resource-id` (`resource-id`)
840 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='photo storage';
841
842 --
843 -- TABLE poll
844 --
845 CREATE TABLE IF NOT EXISTS `poll` (
846         `id` int unsigned NOT NULL auto_increment COMMENT '',
847         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
848         `q0` text COMMENT '',
849         `q1` text COMMENT '',
850         `q2` text COMMENT '',
851         `q3` text COMMENT '',
852         `q4` text COMMENT '',
853         `q5` text COMMENT '',
854         `q6` text COMMENT '',
855         `q7` text COMMENT '',
856         `q8` text COMMENT '',
857         `q9` text COMMENT '',
858          PRIMARY KEY(`id`),
859          INDEX `uid` (`uid`)
860 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Currently unused table for storing poll results';
861
862 --
863 -- TABLE poll_result
864 --
865 CREATE TABLE IF NOT EXISTS `poll_result` (
866         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
867         `poll_id` int unsigned NOT NULL DEFAULT 0,
868         `choice` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
869          PRIMARY KEY(`id`),
870          INDEX `poll_id` (`poll_id`)
871 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='data for polls - currently unused';
872
873 --
874 -- TABLE process
875 --
876 CREATE TABLE IF NOT EXISTS `process` (
877         `pid` int unsigned NOT NULL COMMENT '',
878         `command` varbinary(32) NOT NULL DEFAULT '' COMMENT '',
879         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
880          PRIMARY KEY(`pid`),
881          INDEX `command` (`command`)
882 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Currently running system processes';
883
884 --
885 -- TABLE profile
886 --
887 CREATE TABLE IF NOT EXISTS `profile` (
888         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
889         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
890         `profile-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the profile',
891         `is-default` boolean NOT NULL DEFAULT '0' COMMENT 'Mark this profile as default profile',
892         `hide-friends` boolean NOT NULL DEFAULT '0' COMMENT 'Hide friend list from viewers of this profile',
893         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
894         `pdesc` varchar(255) NOT NULL DEFAULT '' COMMENT 'Title or description',
895         `dob` varchar(32) NOT NULL DEFAULT '0000-00-00' COMMENT 'Day of birth',
896         `address` varchar(255) NOT NULL DEFAULT '' COMMENT '',
897         `locality` varchar(255) NOT NULL DEFAULT '' COMMENT '',
898         `region` varchar(255) NOT NULL DEFAULT '' COMMENT '',
899         `postal-code` varchar(32) NOT NULL DEFAULT '' COMMENT '',
900         `country-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
901         `hometown` varchar(255) NOT NULL DEFAULT '' COMMENT '',
902         `gender` varchar(32) NOT NULL DEFAULT '' COMMENT '',
903         `marital` varchar(255) NOT NULL DEFAULT '' COMMENT '',
904         `with` text COMMENT '',
905         `howlong` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
906         `sexual` varchar(255) NOT NULL DEFAULT '' COMMENT '',
907         `politic` varchar(255) NOT NULL DEFAULT '' COMMENT '',
908         `religion` varchar(255) NOT NULL DEFAULT '' COMMENT '',
909         `pub_keywords` text COMMENT '',
910         `prv_keywords` text COMMENT '',
911         `likes` text COMMENT '',
912         `dislikes` text COMMENT '',
913         `about` text COMMENT '',
914         `summary` varchar(255) NOT NULL DEFAULT '' COMMENT '',
915         `music` text COMMENT '',
916         `book` text COMMENT '',
917         `tv` text COMMENT '',
918         `film` text COMMENT '',
919         `interest` text COMMENT '',
920         `romance` text COMMENT '',
921         `work` text COMMENT '',
922         `education` text COMMENT '',
923         `contact` text COMMENT '',
924         `homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '',
925         `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
926         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
927         `thumb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
928         `publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
929         `net-publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish profile in global directory',
930          PRIMARY KEY(`id`),
931          INDEX `uid_is-default` (`uid`,`is-default`)
932 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='user profiles data';
933
934 --
935 -- TABLE profile_check
936 --
937 CREATE TABLE IF NOT EXISTS `profile_check` (
938         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
939         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
940         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
941         `dfrn_id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
942         `sec` varchar(255) NOT NULL DEFAULT '' COMMENT '',
943         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
944          PRIMARY KEY(`id`)
945 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='DFRN remote auth use';
946
947 --
948 -- TABLE push_subscriber
949 --
950 CREATE TABLE IF NOT EXISTS `push_subscriber` (
951         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
952         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
953         `callback_url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
954         `topic` varchar(255) NOT NULL DEFAULT '' COMMENT '',
955         `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '',
956         `push` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
957         `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last successful trial',
958         `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
959         `renewed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last subscription renewal',
960         `secret` varchar(255) NOT NULL DEFAULT '' COMMENT '',
961          PRIMARY KEY(`id`),
962          INDEX `next_try` (`next_try`)
963 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Used for OStatus: Contains feed subscribers';
964
965 --
966 -- TABLE queue
967 --
968 CREATE TABLE IF NOT EXISTS `queue` (
969         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
970         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Message receiver',
971         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Receiver\'s network',
972         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Unique GUID of the message',
973         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date, when the message was created',
974         `last` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last trial',
975         `next` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
976         `retrial` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
977         `content` mediumtext COMMENT '',
978         `batch` boolean NOT NULL DEFAULT '0' COMMENT '',
979          PRIMARY KEY(`id`),
980          INDEX `last` (`last`),
981          INDEX `next` (`next`)
982 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Queue for messages that couldn\'t be delivered';
983
984 --
985 -- TABLE register
986 --
987 CREATE TABLE IF NOT EXISTS `register` (
988         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
989         `hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
990         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
991         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
992         `password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
993         `language` varchar(16) NOT NULL DEFAULT '' COMMENT '',
994         `note` text COMMENT '',
995          PRIMARY KEY(`id`)
996 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registrations requiring admin approval';
997
998 --
999 -- TABLE search
1000 --
1001 CREATE TABLE IF NOT EXISTS `search` (
1002         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1003         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1004         `term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1005          PRIMARY KEY(`id`),
1006          INDEX `uid` (`uid`)
1007 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
1008
1009 --
1010 -- TABLE session
1011 --
1012 CREATE TABLE IF NOT EXISTS `session` (
1013         `id` bigint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1014         `sid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
1015         `data` text COMMENT '',
1016         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1017          PRIMARY KEY(`id`),
1018          INDEX `sid` (`sid`(64)),
1019          INDEX `expire` (`expire`)
1020 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='web session storage';
1021
1022 --
1023 -- TABLE sign
1024 --
1025 CREATE TABLE IF NOT EXISTS `sign` (
1026         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1027         `iid` int unsigned NOT NULL DEFAULT 0 COMMENT 'item.id',
1028         `signed_text` mediumtext COMMENT '',
1029         `signature` text COMMENT '',
1030         `signer` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1031          PRIMARY KEY(`id`),
1032          UNIQUE INDEX `iid` (`iid`)
1033 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Diaspora signatures';
1034
1035 --
1036 -- TABLE term
1037 --
1038 CREATE TABLE IF NOT EXISTS `term` (
1039         `tid` int unsigned NOT NULL auto_increment COMMENT '',
1040         `oid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1041         `otype` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1042         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1043         `term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1044         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1045         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1046         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1047         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1048         `global` boolean NOT NULL DEFAULT '0' COMMENT '',
1049         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1050          PRIMARY KEY(`tid`),
1051          INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`(32)),
1052          INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
1053          INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`(64)),
1054          INDEX `guid` (`guid`(64))
1055 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='item taxonomy (categories, tags, etc.) table';
1056
1057 --
1058 -- TABLE thread
1059 --
1060 CREATE TABLE IF NOT EXISTS `thread` (
1061         `iid` int unsigned NOT NULL DEFAULT 0 COMMENT 'sequential ID',
1062         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1063         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1064         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item owner',
1065         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item author',
1066         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1067         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1068         `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1069         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1070         `changed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1071         `wall` boolean NOT NULL DEFAULT '0' COMMENT '',
1072         `private` boolean NOT NULL DEFAULT '0' COMMENT '',
1073         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
1074         `moderated` boolean NOT NULL DEFAULT '0' COMMENT '',
1075         `visible` boolean NOT NULL DEFAULT '0' COMMENT '',
1076         `starred` boolean NOT NULL DEFAULT '0' COMMENT '',
1077         `ignored` boolean NOT NULL DEFAULT '0' COMMENT '',
1078         `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
1079         `unseen` boolean NOT NULL DEFAULT '1' COMMENT '',
1080         `deleted` boolean NOT NULL DEFAULT '0' COMMENT '',
1081         `origin` boolean NOT NULL DEFAULT '0' COMMENT '',
1082         `forum_mode` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1083         `mention` boolean NOT NULL DEFAULT '0' COMMENT '',
1084         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
1085         `bookmark` boolean COMMENT '',
1086          PRIMARY KEY(`iid`),
1087          INDEX `uid_network_commented` (`uid`,`network`,`commented`),
1088          INDEX `uid_network_created` (`uid`,`network`,`created`),
1089          INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
1090          INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
1091          INDEX `contactid` (`contact-id`),
1092          INDEX `ownerid` (`owner-id`),
1093          INDEX `authorid` (`author-id`),
1094          INDEX `uid_created` (`uid`,`created`),
1095          INDEX `uid_commented` (`uid`,`commented`),
1096          INDEX `uid_wall_created` (`uid`,`wall`,`created`),
1097          INDEX `private_wall_origin_commented` (`private`,`wall`,`origin`,`commented`)
1098 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Thread related data';
1099
1100 --
1101 -- TABLE tokens
1102 --
1103 CREATE TABLE IF NOT EXISTS `tokens` (
1104         `id` varchar(40) NOT NULL COMMENT '',
1105         `secret` text COMMENT '',
1106         `client_id` varchar(20) NOT NULL DEFAULT '',
1107         `expires` int NOT NULL DEFAULT 0 COMMENT '',
1108         `scope` varchar(200) NOT NULL DEFAULT '' COMMENT '',
1109         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1110          PRIMARY KEY(`id`)
1111 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth usage';
1112
1113 --
1114 -- TABLE user
1115 --
1116 CREATE TABLE IF NOT EXISTS `user` (
1117         `uid` mediumint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1118         `parent-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'The parent user that has full control about this user',
1119         `guid` varchar(64) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this user',
1120         `username` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this user is known by',
1121         `password` varchar(255) NOT NULL DEFAULT '' COMMENT 'encrypted password',
1122         `legacy_password` boolean NOT NULL DEFAULT '0' COMMENT 'Is the password hash double-hashed?',
1123         `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT 'nick- and user name',
1124         `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'the users email address',
1125         `openid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1126         `timezone` varchar(128) NOT NULL DEFAULT '' COMMENT 'PHP-legal timezone',
1127         `language` varchar(32) NOT NULL DEFAULT 'en' COMMENT 'default language',
1128         `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of registration',
1129         `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last login',
1130         `default-location` varchar(255) NOT NULL DEFAULT '' COMMENT 'Default for item.location',
1131         `allow_location` boolean NOT NULL DEFAULT '0' COMMENT '1 allows to display the location',
1132         `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'user theme preference',
1133         `pubkey` text COMMENT 'RSA public key 4096 bit',
1134         `prvkey` text COMMENT 'RSA private key 4096 bit',
1135         `spubkey` text COMMENT '',
1136         `sprvkey` text COMMENT '',
1137         `verified` boolean NOT NULL DEFAULT '0' COMMENT 'user is verified through email',
1138         `blocked` boolean NOT NULL DEFAULT '0' COMMENT '1 for user is blocked',
1139         `blockwall` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user',
1140         `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unkown viewers',
1141         `blocktags` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user',
1142         `unkmail` boolean NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user',
1143         `cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '',
1144         `notify-flags` smallint unsigned NOT NULL DEFAULT 65535 COMMENT 'email notification options',
1145         `page-flags` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'page/profile type',
1146         `account-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1147         `prvnets` boolean NOT NULL DEFAULT '0' COMMENT '',
1148         `pwdreset` varchar(255) COMMENT 'Password reset request token',
1149         `pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
1150         `maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '',
1151         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1152         `account_removed` boolean NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed',
1153         `account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
1154         `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted',
1155         `expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last warning of account expiration',
1156         `def_gid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1157         `allow_cid` mediumtext COMMENT 'default permission for this user',
1158         `allow_gid` mediumtext COMMENT 'default permission for this user',
1159         `deny_cid` mediumtext COMMENT 'default permission for this user',
1160         `deny_gid` mediumtext COMMENT 'default permission for this user',
1161         `openidserver` text COMMENT '',
1162          PRIMARY KEY(`uid`),
1163          INDEX `nickname` (`nickname`(32))
1164 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='The local users';
1165
1166 --
1167 -- TABLE userd
1168 --
1169 CREATE TABLE IF NOT EXISTS `userd` (
1170         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1171         `username` varchar(255) NOT NULL COMMENT '',
1172          PRIMARY KEY(`id`),
1173          INDEX `username` (`username`(32))
1174 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Deleted usernames';
1175
1176 --
1177 -- TABLE user-contact
1178 --
1179 CREATE TABLE IF NOT EXISTS `user-contact` (
1180         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Contact id of the linked public contact',
1181         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1182         `blocked` boolean COMMENT 'Contact is completely blocked for this user',
1183         `ignored` boolean COMMENT 'Posts from this contact are ignored',
1184         `collapsed` boolean COMMENT 'Posts from this contact are collapsed',
1185          PRIMARY KEY(`uid`,`cid`)
1186 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific public contact data';
1187
1188 --
1189 -- TABLE user-item
1190 --
1191 CREATE TABLE IF NOT EXISTS `user-item` (
1192         `iid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item id',
1193         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1194         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide an item from the user',
1195         `ignored` boolean COMMENT 'Ignore this thread if set',
1196          PRIMARY KEY(`uid`,`iid`)
1197 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific item data';
1198
1199 --
1200 -- TABLE worker-ipc
1201 --
1202 CREATE TABLE IF NOT EXISTS `worker-ipc` (
1203         `key` int NOT NULL COMMENT '',
1204         `jobs` boolean COMMENT 'Flag for outstanding jobs',
1205          PRIMARY KEY(`key`)
1206 ) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Inter process communication between the frontend and the worker';
1207
1208 --
1209 -- TABLE workerqueue
1210 --
1211 CREATE TABLE IF NOT EXISTS `workerqueue` (
1212         `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented worker task id',
1213         `parameter` mediumblob COMMENT 'Task command',
1214         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Task priority',
1215         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
1216         `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process id of the worker',
1217         `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Execution date',
1218         `done` boolean NOT NULL DEFAULT '0' COMMENT 'Marked 1 when the task was done - will be deleted later',
1219          PRIMARY KEY(`id`),
1220          INDEX `pid` (`pid`),
1221          INDEX `parameter` (`parameter`(64)),
1222          INDEX `priority_created` (`priority`,`created`),
1223          INDEX `done_executed` (`done`,`executed`)
1224 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries';
1225
1226