]> git.mxchange.org Git - friendica.git/blob - database.sql
Merge pull request #9945 from annando/no-item
[friendica.git] / database.sql
1 -- ------------------------------------------
2 -- Friendica 2021.03-dev (Red Hot Poker)
3 -- DB_UPDATE_VERSION 1404
4 -- ------------------------------------------
5
6
7 --
8 -- TABLE gserver
9 --
10 CREATE TABLE IF NOT EXISTS `gserver` (
11         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
12         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
13         `nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
14         `version` varchar(255) NOT NULL DEFAULT '' COMMENT '',
15         `site_name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
16         `info` text COMMENT '',
17         `register_policy` tinyint NOT NULL DEFAULT 0 COMMENT '',
18         `registered-users` int unsigned NOT NULL DEFAULT 0 COMMENT 'Number of registered users',
19         `directory-type` tinyint DEFAULT 0 COMMENT 'Type of directory service (Poco, Mastodon)',
20         `poco` varchar(255) NOT NULL DEFAULT '' COMMENT '',
21         `noscrape` varchar(255) NOT NULL DEFAULT '' COMMENT '',
22         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
23         `protocol` tinyint unsigned COMMENT 'The protocol of the server',
24         `platform` varchar(255) NOT NULL DEFAULT '' COMMENT '',
25         `relay-subscribe` boolean NOT NULL DEFAULT '0' COMMENT 'Has the server subscribed to the relay system',
26         `relay-scope` varchar(10) NOT NULL DEFAULT '' COMMENT 'The scope of messages that the server wants to get',
27         `detection-method` tinyint unsigned COMMENT 'Method that had been used to detect that server',
28         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
29         `last_poco_query` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
30         `last_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Last successful connection request',
31         `last_failure` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Last failed connection request',
32         `failed` boolean COMMENT 'Connection failed',
33         `next_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Next connection request',
34          PRIMARY KEY(`id`),
35          UNIQUE INDEX `nurl` (`nurl`(190)),
36          INDEX `next_contact` (`next_contact`)
37 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Global servers';
38
39 --
40 -- TABLE user
41 --
42 CREATE TABLE IF NOT EXISTS `user` (
43         `uid` mediumint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
44         `parent-uid` mediumint unsigned COMMENT 'The parent user that has full control about this user',
45         `guid` varchar(64) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this user',
46         `username` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this user is known by',
47         `password` varchar(255) NOT NULL DEFAULT '' COMMENT 'encrypted password',
48         `legacy_password` boolean NOT NULL DEFAULT '0' COMMENT 'Is the password hash double-hashed?',
49         `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT 'nick- and user name',
50         `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'the users email address',
51         `openid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
52         `timezone` varchar(128) NOT NULL DEFAULT '' COMMENT 'PHP-legal timezone',
53         `language` varchar(32) NOT NULL DEFAULT 'en' COMMENT 'default language',
54         `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of registration',
55         `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last login',
56         `default-location` varchar(255) NOT NULL DEFAULT '' COMMENT 'Default for item.location',
57         `allow_location` boolean NOT NULL DEFAULT '0' COMMENT '1 allows to display the location',
58         `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'user theme preference',
59         `pubkey` text COMMENT 'RSA public key 4096 bit',
60         `prvkey` text COMMENT 'RSA private key 4096 bit',
61         `spubkey` text COMMENT '',
62         `sprvkey` text COMMENT '',
63         `verified` boolean NOT NULL DEFAULT '0' COMMENT 'user is verified through email',
64         `blocked` boolean NOT NULL DEFAULT '0' COMMENT '1 for user is blocked',
65         `blockwall` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user',
66         `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unkown viewers',
67         `blocktags` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user',
68         `unkmail` boolean NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user',
69         `cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '',
70         `notify-flags` smallint unsigned NOT NULL DEFAULT 65535 COMMENT 'email notification options',
71         `page-flags` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'page/profile type',
72         `account-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
73         `prvnets` boolean NOT NULL DEFAULT '0' COMMENT '',
74         `pwdreset` varchar(255) COMMENT 'Password reset request token',
75         `pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
76         `maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '',
77         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
78         `account_removed` boolean NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed',
79         `account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
80         `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted',
81         `expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last warning of account expiration',
82         `def_gid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
83         `allow_cid` mediumtext COMMENT 'default permission for this user',
84         `allow_gid` mediumtext COMMENT 'default permission for this user',
85         `deny_cid` mediumtext COMMENT 'default permission for this user',
86         `deny_gid` mediumtext COMMENT 'default permission for this user',
87         `openidserver` text COMMENT '',
88          PRIMARY KEY(`uid`),
89          INDEX `nickname` (`nickname`(32)),
90          INDEX `parent-uid` (`parent-uid`),
91         FOREIGN KEY (`parent-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
92 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='The local users';
93
94 --
95 -- TABLE contact
96 --
97 CREATE TABLE IF NOT EXISTS `contact` (
98         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
99         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
100         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
101         `updated` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last contact update',
102         `self` boolean NOT NULL DEFAULT '0' COMMENT '1 if the contact is the user him/her self',
103         `remote_self` boolean NOT NULL DEFAULT '0' COMMENT '',
104         `rel` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'The kind of the relation between the user and the contact',
105         `duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
106         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network of the contact',
107         `protocol` char(4) NOT NULL DEFAULT '' COMMENT 'Protocol of the contact',
108         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this contact is known by',
109         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT 'Nick- and user name of the contact',
110         `location` varchar(255) DEFAULT '' COMMENT '',
111         `about` text COMMENT '',
112         `keywords` text COMMENT 'public keywords (interests) of the contact',
113         `gender` varchar(32) NOT NULL DEFAULT '' COMMENT 'Deprecated',
114         `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
115         `attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
116         `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '',
117         `photo` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
118         `thumb` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)',
119         `micro` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (micro size)',
120         `site-pubkey` text COMMENT '',
121         `issued-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
122         `dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
123         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
124         `nurl` varchar(255) NOT NULL DEFAULT '' COMMENT '',
125         `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
126         `alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
127         `pubkey` text COMMENT 'RSA public key 4096 bit',
128         `prvkey` text COMMENT 'RSA private key 4096 bit',
129         `batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
130         `request` varchar(255) COMMENT '',
131         `notify` varchar(255) COMMENT '',
132         `poll` varchar(255) COMMENT '',
133         `confirm` varchar(255) COMMENT '',
134         `subscribe` varchar(255) COMMENT '',
135         `poco` varchar(255) COMMENT '',
136         `aes_allow` boolean NOT NULL DEFAULT '0' COMMENT '',
137         `ret-aes` boolean NOT NULL DEFAULT '0' COMMENT '',
138         `usehub` boolean NOT NULL DEFAULT '0' COMMENT '',
139         `subhub` boolean NOT NULL DEFAULT '0' COMMENT '',
140         `hub-verify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
141         `last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last try to update the contact info',
142         `success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful contact update',
143         `failure_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed update',
144         `failed` boolean COMMENT 'Connection failed',
145         `name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
146         `uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
147         `avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
148         `term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
149         `last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'date of the last post',
150         `last-discovery` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'date of the last follower discovery',
151         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
152         `blocked` boolean NOT NULL DEFAULT '1' COMMENT 'Node-wide block status',
153         `block_reason` text COMMENT 'Node-wide block reason',
154         `readonly` boolean NOT NULL DEFAULT '0' COMMENT 'posts of the contact are readonly',
155         `writable` boolean NOT NULL DEFAULT '0' COMMENT '',
156         `forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a forum',
157         `prv` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a private group',
158         `contact-type` tinyint NOT NULL DEFAULT 0 COMMENT '',
159         `manually-approve` boolean COMMENT '',
160         `hidden` boolean NOT NULL DEFAULT '0' COMMENT '',
161         `archive` boolean NOT NULL DEFAULT '0' COMMENT '',
162         `pending` boolean NOT NULL DEFAULT '1' COMMENT '',
163         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'Contact has been deleted',
164         `rating` tinyint NOT NULL DEFAULT 0 COMMENT '',
165         `unsearchable` boolean NOT NULL DEFAULT '0' COMMENT 'Contact prefers to not be searchable',
166         `sensitive` boolean NOT NULL DEFAULT '0' COMMENT 'Contact posts sensitive content',
167         `baseurl` varchar(255) DEFAULT '' COMMENT 'baseurl of the contact',
168         `gsid` int unsigned COMMENT 'Global Server ID',
169         `reason` text COMMENT '',
170         `closeness` tinyint unsigned NOT NULL DEFAULT 99 COMMENT '',
171         `info` mediumtext COMMENT '',
172         `profile-id` int unsigned COMMENT 'Deprecated',
173         `bdyear` varchar(4) NOT NULL DEFAULT '' COMMENT '',
174         `bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
175         `notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
176         `fetch_further_information` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
177         `ffi_keyword_denylist` text COMMENT '',
178          PRIMARY KEY(`id`),
179          INDEX `uid_name` (`uid`,`name`(190)),
180          INDEX `self_uid` (`self`,`uid`),
181          INDEX `alias_uid` (`alias`(128),`uid`),
182          INDEX `pending_uid` (`pending`,`uid`),
183          INDEX `blocked_uid` (`blocked`,`uid`),
184          INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
185          INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
186          INDEX `addr_uid` (`addr`(128),`uid`),
187          INDEX `nurl_uid` (`nurl`(128),`uid`),
188          INDEX `nick_uid` (`nick`(128),`uid`),
189          INDEX `attag_uid` (`attag`(96),`uid`),
190          INDEX `dfrn-id` (`dfrn-id`(64)),
191          INDEX `issued-id` (`issued-id`(64)),
192          INDEX `network_uid_lastupdate` (`network`,`uid`,`last-update`),
193          INDEX `uid_network_self_lastupdate` (`uid`,`network`,`self`,`last-update`),
194          INDEX `uid_lastitem` (`uid`,`last-item`),
195          INDEX `gsid` (`gsid`),
196         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
197         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
198 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='contact table';
199
200 --
201 -- TABLE item-uri
202 --
203 CREATE TABLE IF NOT EXISTS `item-uri` (
204         `id` int unsigned NOT NULL auto_increment,
205         `uri` varbinary(255) NOT NULL COMMENT 'URI of an item',
206         `guid` varbinary(255) COMMENT 'A unique identifier for an item',
207          PRIMARY KEY(`id`),
208          UNIQUE INDEX `uri` (`uri`),
209          INDEX `guid` (`guid`)
210 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='URI and GUID for items';
211
212 --
213 -- TABLE tag
214 --
215 CREATE TABLE IF NOT EXISTS `tag` (
216         `id` int unsigned NOT NULL auto_increment COMMENT '',
217         `name` varchar(96) NOT NULL DEFAULT '' COMMENT '',
218         `url` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
219          PRIMARY KEY(`id`),
220          UNIQUE INDEX `type_name_url` (`name`,`url`),
221          INDEX `url` (`url`)
222 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='tags and mentions';
223
224 --
225 -- TABLE clients
226 --
227 CREATE TABLE IF NOT EXISTS `clients` (
228         `client_id` varchar(20) NOT NULL COMMENT '',
229         `pw` varchar(20) NOT NULL DEFAULT '' COMMENT '',
230         `redirect_uri` varchar(200) NOT NULL DEFAULT '' COMMENT '',
231         `name` text COMMENT '',
232         `icon` text COMMENT '',
233         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
234          PRIMARY KEY(`client_id`),
235          INDEX `uid` (`uid`),
236         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
237 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth usage';
238
239 --
240 -- TABLE permissionset
241 --
242 CREATE TABLE IF NOT EXISTS `permissionset` (
243         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
244         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id of this permission set',
245         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
246         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
247         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
248         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
249          PRIMARY KEY(`id`),
250          INDEX `uid_allow_cid_allow_gid_deny_cid_deny_gid` (`uid`,`allow_cid`(50),`allow_gid`(30),`deny_cid`(50),`deny_gid`(30)),
251         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
252 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
253
254 --
255 -- TABLE verb
256 --
257 CREATE TABLE IF NOT EXISTS `verb` (
258         `id` smallint unsigned NOT NULL auto_increment,
259         `name` varchar(100) NOT NULL DEFAULT '' COMMENT '',
260          PRIMARY KEY(`id`)
261 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activity Verbs';
262
263 --
264 -- TABLE 2fa_app_specific_password
265 --
266 CREATE TABLE IF NOT EXISTS `2fa_app_specific_password` (
267         `id` mediumint unsigned NOT NULL auto_increment COMMENT 'Password ID for revocation',
268         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
269         `description` varchar(255) COMMENT 'Description of the usage of the password',
270         `hashed_password` varchar(255) NOT NULL COMMENT 'Hashed password',
271         `generated` datetime NOT NULL COMMENT 'Datetime the password was generated',
272         `last_used` datetime COMMENT 'Datetime the password was last used',
273          PRIMARY KEY(`id`),
274          INDEX `uid_description` (`uid`,`description`(190)),
275         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
276 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor app-specific _password';
277
278 --
279 -- TABLE 2fa_recovery_codes
280 --
281 CREATE TABLE IF NOT EXISTS `2fa_recovery_codes` (
282         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
283         `code` varchar(50) NOT NULL COMMENT 'Recovery code string',
284         `generated` datetime NOT NULL COMMENT 'Datetime the code was generated',
285         `used` datetime COMMENT 'Datetime the code was used',
286          PRIMARY KEY(`uid`,`code`),
287         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
288 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor authentication recovery codes';
289
290 --
291 -- TABLE 2fa_trusted_browser
292 --
293 CREATE TABLE IF NOT EXISTS `2fa_trusted_browser` (
294         `cookie_hash` varchar(80) NOT NULL COMMENT 'Trusted cookie hash',
295         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
296         `user_agent` text COMMENT 'User agent string',
297         `created` datetime NOT NULL COMMENT 'Datetime the trusted browser was recorded',
298         `last_used` datetime COMMENT 'Datetime the trusted browser was last used',
299          PRIMARY KEY(`cookie_hash`),
300          INDEX `uid` (`uid`),
301         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
302 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor authentication trusted browsers';
303
304 --
305 -- TABLE addon
306 --
307 CREATE TABLE IF NOT EXISTS `addon` (
308         `id` int unsigned NOT NULL auto_increment COMMENT '',
309         `name` varchar(50) NOT NULL DEFAULT '' COMMENT 'addon base (file)name',
310         `version` varchar(50) NOT NULL DEFAULT '' COMMENT 'currently unused',
311         `installed` boolean NOT NULL DEFAULT '0' COMMENT 'currently always 1',
312         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'currently unused',
313         `timestamp` int unsigned NOT NULL DEFAULT 0 COMMENT 'file timestamp to check for reloads',
314         `plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '1 = has admin config, 0 = has no admin config',
315          PRIMARY KEY(`id`),
316          UNIQUE INDEX `name` (`name`)
317 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registered addons';
318
319 --
320 -- TABLE apcontact
321 --
322 CREATE TABLE IF NOT EXISTS `apcontact` (
323         `url` varbinary(255) NOT NULL COMMENT 'URL of the contact',
324         `uuid` varchar(255) COMMENT '',
325         `type` varchar(20) NOT NULL COMMENT '',
326         `following` varchar(255) COMMENT '',
327         `followers` varchar(255) COMMENT '',
328         `inbox` varchar(255) NOT NULL COMMENT '',
329         `outbox` varchar(255) COMMENT '',
330         `sharedinbox` varchar(255) COMMENT '',
331         `manually-approve` boolean COMMENT '',
332         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
333         `name` varchar(255) COMMENT '',
334         `about` text COMMENT '',
335         `photo` varchar(255) COMMENT '',
336         `addr` varchar(255) COMMENT '',
337         `alias` varchar(255) COMMENT '',
338         `pubkey` text COMMENT '',
339         `subscribe` varchar(255) COMMENT '',
340         `baseurl` varchar(255) COMMENT 'baseurl of the ap contact',
341         `gsid` int unsigned COMMENT 'Global Server ID',
342         `generator` varchar(255) COMMENT 'Name of the contact\'s system',
343         `following_count` int unsigned DEFAULT 0 COMMENT 'Number of following contacts',
344         `followers_count` int unsigned DEFAULT 0 COMMENT 'Number of followers',
345         `statuses_count` int unsigned DEFAULT 0 COMMENT 'Number of posts',
346         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
347          PRIMARY KEY(`url`),
348          INDEX `addr` (`addr`(32)),
349          INDEX `alias` (`alias`(190)),
350          INDEX `followers` (`followers`(190)),
351          INDEX `baseurl` (`baseurl`(190)),
352          INDEX `sharedinbox` (`sharedinbox`(190)),
353          INDEX `gsid` (`gsid`),
354         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
355 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation';
356
357 --
358 -- TABLE attach
359 --
360 CREATE TABLE IF NOT EXISTS `attach` (
361         `id` int unsigned NOT NULL auto_increment COMMENT 'generated index',
362         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
363         `hash` varchar(64) NOT NULL DEFAULT '' COMMENT 'hash',
364         `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'filename of original',
365         `filetype` varchar(64) NOT NULL DEFAULT '' COMMENT 'mimetype',
366         `filesize` int unsigned NOT NULL DEFAULT 0 COMMENT 'size in bytes',
367         `data` longblob NOT NULL COMMENT 'file data',
368         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
369         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
370         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>',
371         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
372         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
373         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
374         `backend-class` tinytext COMMENT 'Storage backend class',
375         `backend-ref` text COMMENT 'Storage backend data reference',
376          PRIMARY KEY(`id`),
377          INDEX `uid` (`uid`),
378         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
379 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='file attachments';
380
381 --
382 -- TABLE auth_codes
383 --
384 CREATE TABLE IF NOT EXISTS `auth_codes` (
385         `id` varchar(40) NOT NULL COMMENT '',
386         `client_id` varchar(20) NOT NULL DEFAULT '' COMMENT '',
387         `redirect_uri` varchar(200) NOT NULL DEFAULT '' COMMENT '',
388         `expires` int NOT NULL DEFAULT 0 COMMENT '',
389         `scope` varchar(250) NOT NULL DEFAULT '' COMMENT '',
390          PRIMARY KEY(`id`),
391          INDEX `client_id` (`client_id`),
392         FOREIGN KEY (`client_id`) REFERENCES `clients` (`client_id`) ON UPDATE RESTRICT ON DELETE CASCADE
393 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth usage';
394
395 --
396 -- TABLE cache
397 --
398 CREATE TABLE IF NOT EXISTS `cache` (
399         `k` varbinary(255) NOT NULL COMMENT 'cache key',
400         `v` mediumtext COMMENT 'cached serialized value',
401         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
402         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache insertion',
403          PRIMARY KEY(`k`),
404          INDEX `k_expires` (`k`,`expires`)
405 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data';
406
407 --
408 -- TABLE challenge
409 --
410 CREATE TABLE IF NOT EXISTS `challenge` (
411         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
412         `challenge` varchar(255) NOT NULL DEFAULT '' COMMENT '',
413         `dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
414         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
415         `type` varchar(255) NOT NULL DEFAULT '' COMMENT '',
416         `last_update` varchar(255) NOT NULL DEFAULT '' COMMENT '',
417          PRIMARY KEY(`id`)
418 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
419
420 --
421 -- TABLE config
422 --
423 CREATE TABLE IF NOT EXISTS `config` (
424         `id` int unsigned NOT NULL auto_increment COMMENT '',
425         `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
426         `k` varbinary(50) NOT NULL DEFAULT '' COMMENT '',
427         `v` mediumtext COMMENT '',
428          PRIMARY KEY(`id`),
429          UNIQUE INDEX `cat_k` (`cat`,`k`)
430 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='main configuration storage';
431
432 --
433 -- TABLE contact-relation
434 --
435 CREATE TABLE IF NOT EXISTS `contact-relation` (
436         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact the related contact had interacted with',
437         `relation-cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'related contact who had interacted with the contact',
438         `last-interaction` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last interaction',
439         `follow-updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last update of the contact relationship',
440         `follows` boolean NOT NULL DEFAULT '0' COMMENT '',
441          PRIMARY KEY(`cid`,`relation-cid`),
442          INDEX `relation-cid` (`relation-cid`),
443         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
444         FOREIGN KEY (`relation-cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
445 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Contact relations';
446
447 --
448 -- TABLE conv
449 --
450 CREATE TABLE IF NOT EXISTS `conv` (
451         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
452         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this conversation',
453         `recips` text COMMENT 'sender_handle;recipient_handle',
454         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
455         `creator` varchar(255) NOT NULL DEFAULT '' COMMENT 'handle of creator',
456         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation timestamp',
457         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'edited timestamp',
458         `subject` text COMMENT 'subject of initial message',
459          PRIMARY KEY(`id`),
460          INDEX `uid` (`uid`),
461         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
462 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages';
463
464 --
465 -- TABLE conversation
466 --
467 CREATE TABLE IF NOT EXISTS `conversation` (
468         `item-uri` varbinary(255) NOT NULL COMMENT 'Original URI of the item - unrelated to the table with the same name',
469         `reply-to-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT 'URI to which this item is a reply',
470         `conversation-uri` varbinary(255) NOT NULL DEFAULT '' COMMENT 'GNU Social conversation URI',
471         `conversation-href` varbinary(255) NOT NULL DEFAULT '' COMMENT 'GNU Social conversation link',
472         `protocol` tinyint unsigned NOT NULL DEFAULT 255 COMMENT 'The protocol of the item',
473         `direction` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'How the message arrived here: 1=push, 2=pull',
474         `source` mediumtext COMMENT 'Original source',
475         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Receiving date',
476          PRIMARY KEY(`item-uri`),
477          INDEX `conversation-uri` (`conversation-uri`),
478          INDEX `received` (`received`)
479 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Raw data and structure information for messages';
480
481 --
482 -- TABLE delayed-post
483 --
484 CREATE TABLE IF NOT EXISTS `delayed-post` (
485         `id` int unsigned NOT NULL auto_increment,
486         `uri` varchar(255) COMMENT 'URI of the post that will be distributed later',
487         `uid` mediumint unsigned COMMENT 'Owner User id',
488         `delayed` datetime COMMENT 'delay time',
489          PRIMARY KEY(`id`),
490          UNIQUE INDEX `uid_uri` (`uid`,`uri`(190)),
491         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
492 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Posts that are about to be distributed at a later time';
493
494 --
495 -- TABLE diaspora-interaction
496 --
497 CREATE TABLE IF NOT EXISTS `diaspora-interaction` (
498         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
499         `interaction` mediumtext COMMENT 'The Diaspora interaction',
500          PRIMARY KEY(`uri-id`),
501         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
502 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Signed Diaspora Interaction';
503
504 --
505 -- TABLE event
506 --
507 CREATE TABLE IF NOT EXISTS `event` (
508         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
509         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
510         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
511         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact_id (ID of the contact in contact table)',
512         `uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
513         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
514         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
515         `start` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event start time',
516         `finish` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event end time',
517         `summary` text COMMENT 'short description or title of the event',
518         `desc` text COMMENT 'event description',
519         `location` text COMMENT 'event location',
520         `type` varchar(20) NOT NULL DEFAULT '' COMMENT 'event or birthday',
521         `nofinish` boolean NOT NULL DEFAULT '0' COMMENT 'if event does have no end this is 1',
522         `adjust` boolean NOT NULL DEFAULT '1' COMMENT 'adjust to timezone of the recipient (0 or 1)',
523         `ignore` boolean NOT NULL DEFAULT '0' COMMENT '0 or 1',
524         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
525         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
526         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
527         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
528          PRIMARY KEY(`id`),
529          INDEX `uid_start` (`uid`,`start`),
530          INDEX `cid` (`cid`),
531         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
532         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
533 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Events';
534
535 --
536 -- TABLE fcontact
537 --
538 CREATE TABLE IF NOT EXISTS `fcontact` (
539         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
540         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'unique id',
541         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
542         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
543         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
544         `request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
545         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
546         `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
547         `batch` varchar(255) NOT NULL DEFAULT '' COMMENT '',
548         `notify` varchar(255) NOT NULL DEFAULT '' COMMENT '',
549         `poll` varchar(255) NOT NULL DEFAULT '' COMMENT '',
550         `confirm` varchar(255) NOT NULL DEFAULT '' COMMENT '',
551         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
552         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
553         `alias` varchar(255) NOT NULL DEFAULT '' COMMENT '',
554         `pubkey` text COMMENT '',
555         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
556          PRIMARY KEY(`id`),
557          INDEX `addr` (`addr`(32)),
558          UNIQUE INDEX `url` (`url`(190))
559 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Diaspora compatible contacts - used in the Diaspora implementation';
560
561 --
562 -- TABLE fsuggest
563 --
564 CREATE TABLE IF NOT EXISTS `fsuggest` (
565         `id` int unsigned NOT NULL auto_increment COMMENT '',
566         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
567         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
568         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
569         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
570         `request` varchar(255) NOT NULL DEFAULT '' COMMENT '',
571         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
572         `note` text COMMENT '',
573         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
574          PRIMARY KEY(`id`),
575          INDEX `cid` (`cid`),
576          INDEX `uid` (`uid`),
577         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
578         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
579 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='friend suggestion stuff';
580
581 --
582 -- TABLE group
583 --
584 CREATE TABLE IF NOT EXISTS `group` (
585         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
586         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
587         `visible` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the member list is not private',
588         `deleted` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the group has been deleted',
589         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'human readable name of group',
590          PRIMARY KEY(`id`),
591          INDEX `uid` (`uid`),
592         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
593 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy groups, group info';
594
595 --
596 -- TABLE group_member
597 --
598 CREATE TABLE IF NOT EXISTS `group_member` (
599         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
600         `gid` int unsigned NOT NULL DEFAULT 0 COMMENT 'groups.id of the associated group',
601         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id of the member assigned to the associated group',
602          PRIMARY KEY(`id`),
603          INDEX `contactid` (`contact-id`),
604          UNIQUE INDEX `gid_contactid` (`gid`,`contact-id`),
605         FOREIGN KEY (`gid`) REFERENCES `group` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
606         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
607 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy groups, member info';
608
609 --
610 -- TABLE gserver-tag
611 --
612 CREATE TABLE IF NOT EXISTS `gserver-tag` (
613         `gserver-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'The id of the gserver',
614         `tag` varchar(100) NOT NULL DEFAULT '' COMMENT 'Tag that the server has subscribed',
615          PRIMARY KEY(`gserver-id`,`tag`),
616          INDEX `tag` (`tag`),
617         FOREIGN KEY (`gserver-id`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
618 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Tags that the server has subscribed';
619
620 --
621 -- TABLE hook
622 --
623 CREATE TABLE IF NOT EXISTS `hook` (
624         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
625         `hook` varbinary(100) NOT NULL DEFAULT '' COMMENT 'name of hook',
626         `file` varbinary(200) NOT NULL DEFAULT '' COMMENT 'relative filename of hook handler',
627         `function` varbinary(200) NOT NULL DEFAULT '' COMMENT 'function name of hook handler',
628         `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',
629          PRIMARY KEY(`id`),
630          UNIQUE INDEX `hook_file_function` (`hook`,`file`,`function`)
631 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='addon hook registry';
632
633 --
634 -- TABLE host
635 --
636 CREATE TABLE IF NOT EXISTS `host` (
637         `id` tinyint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
638         `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The hostname',
639          PRIMARY KEY(`id`),
640          UNIQUE INDEX `name` (`name`)
641 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Hostname';
642
643 --
644 -- TABLE inbox-status
645 --
646 CREATE TABLE IF NOT EXISTS `inbox-status` (
647         `url` varbinary(255) NOT NULL COMMENT 'URL of the inbox',
648         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of this entry',
649         `success` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful delivery',
650         `failure` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed delivery',
651         `previous` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Previous delivery date',
652         `archive` boolean NOT NULL DEFAULT '0' COMMENT 'Is the inbox archived?',
653         `shared` boolean NOT NULL DEFAULT '0' COMMENT 'Is it a shared inbox?',
654          PRIMARY KEY(`url`)
655 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Status of ActivityPub inboxes';
656
657 --
658 -- TABLE intro
659 --
660 CREATE TABLE IF NOT EXISTS `intro` (
661         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
662         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
663         `fid` int unsigned COMMENT '',
664         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
665         `knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
666         `duplex` boolean NOT NULL DEFAULT '0' COMMENT '',
667         `note` text COMMENT '',
668         `hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
669         `datetime` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
670         `blocked` boolean NOT NULL DEFAULT '1' COMMENT '',
671         `ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
672          PRIMARY KEY(`id`),
673          INDEX `contact-id` (`contact-id`),
674          INDEX `uid` (`uid`),
675         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
676         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
677 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
678
679 --
680 -- TABLE locks
681 --
682 CREATE TABLE IF NOT EXISTS `locks` (
683         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
684         `name` varchar(128) NOT NULL DEFAULT '' COMMENT '',
685         `locked` boolean NOT NULL DEFAULT '0' COMMENT '',
686         `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process ID',
687         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
688          PRIMARY KEY(`id`),
689          INDEX `name_expires` (`name`,`expires`)
690 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
691
692 --
693 -- TABLE mail
694 --
695 CREATE TABLE IF NOT EXISTS `mail` (
696         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
697         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
698         `guid` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
699         `from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
700         `from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
701         `from-url` varchar(255) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender',
702         `contact-id` varchar(255) COMMENT 'contact.id',
703         `convid` int unsigned COMMENT 'conv.id',
704         `title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
705         `body` mediumtext COMMENT '',
706         `seen` boolean NOT NULL DEFAULT '0' COMMENT 'if message visited it is 1',
707         `reply` boolean NOT NULL DEFAULT '0' COMMENT '',
708         `replied` boolean NOT NULL DEFAULT '0' COMMENT '',
709         `unknown` boolean NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1',
710         `uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
711         `parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT '',
712         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message',
713          PRIMARY KEY(`id`),
714          INDEX `uid_seen` (`uid`,`seen`),
715          INDEX `convid` (`convid`),
716          INDEX `uri` (`uri`(64)),
717          INDEX `parent-uri` (`parent-uri`(64)),
718          INDEX `contactid` (`contact-id`(32)),
719         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
720 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages';
721
722 --
723 -- TABLE mailacct
724 --
725 CREATE TABLE IF NOT EXISTS `mailacct` (
726         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
727         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
728         `server` varchar(255) NOT NULL DEFAULT '' COMMENT '',
729         `port` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
730         `ssltype` varchar(16) NOT NULL DEFAULT '' COMMENT '',
731         `mailbox` varchar(255) NOT NULL DEFAULT '' COMMENT '',
732         `user` varchar(255) NOT NULL DEFAULT '' COMMENT '',
733         `pass` text COMMENT '',
734         `reply_to` varchar(255) NOT NULL DEFAULT '' COMMENT '',
735         `action` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
736         `movetofolder` varchar(255) NOT NULL DEFAULT '' COMMENT '',
737         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
738         `last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
739          PRIMARY KEY(`id`),
740          INDEX `uid` (`uid`),
741         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
742 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Mail account data for fetching mails';
743
744 --
745 -- TABLE manage
746 --
747 CREATE TABLE IF NOT EXISTS `manage` (
748         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
749         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
750         `mid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
751          PRIMARY KEY(`id`),
752          UNIQUE INDEX `uid_mid` (`uid`,`mid`),
753          INDEX `mid` (`mid`),
754         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
755         FOREIGN KEY (`mid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
756 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='table of accounts that can manage each other';
757
758 --
759 -- TABLE notify
760 --
761 CREATE TABLE IF NOT EXISTS `notify` (
762         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
763         `type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
764         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
765         `url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
766         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
767         `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
768         `msg` mediumtext COMMENT '',
769         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
770         `link` varchar(255) NOT NULL DEFAULT '' COMMENT '',
771         `iid` int unsigned COMMENT '',
772         `parent` int unsigned COMMENT '',
773         `uri-id` int unsigned COMMENT 'Item-uri id of the related post',
774         `parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related post',
775         `seen` boolean NOT NULL DEFAULT '0' COMMENT '',
776         `verb` varchar(100) NOT NULL DEFAULT '' COMMENT '',
777         `otype` varchar(10) NOT NULL DEFAULT '' COMMENT '',
778         `name_cache` tinytext COMMENT 'Cached bbcode parsing of name',
779         `msg_cache` mediumtext COMMENT 'Cached bbcode parsing of msg',
780          PRIMARY KEY(`id`),
781          INDEX `seen_uid_date` (`seen`,`uid`,`date`),
782          INDEX `uid_date` (`uid`,`date`),
783          INDEX `uid_type_link` (`uid`,`type`,`link`(190)),
784          INDEX `uri-id` (`uri-id`),
785          INDEX `parent-uri-id` (`parent-uri-id`),
786         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
787         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
788         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
789 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='notifications';
790
791 --
792 -- TABLE notify-threads
793 --
794 CREATE TABLE IF NOT EXISTS `notify-threads` (
795         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
796         `notify-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
797         `master-parent-item` int unsigned COMMENT 'Deprecated',
798         `master-parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related post',
799         `parent-item` int unsigned NOT NULL DEFAULT 0 COMMENT '',
800         `receiver-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
801          PRIMARY KEY(`id`),
802          INDEX `master-parent-uri-id` (`master-parent-uri-id`),
803          INDEX `receiver-uid` (`receiver-uid`),
804          INDEX `notify-id` (`notify-id`),
805         FOREIGN KEY (`notify-id`) REFERENCES `notify` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
806         FOREIGN KEY (`master-parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
807         FOREIGN KEY (`receiver-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
808 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
809
810 --
811 -- TABLE oembed
812 --
813 CREATE TABLE IF NOT EXISTS `oembed` (
814         `url` varbinary(255) NOT NULL COMMENT 'page url',
815         `maxwidth` mediumint unsigned NOT NULL COMMENT 'Maximum width passed to Oembed',
816         `content` mediumtext COMMENT 'OEmbed data of the page',
817         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
818          PRIMARY KEY(`url`,`maxwidth`),
819          INDEX `created` (`created`)
820 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='cache for OEmbed queries';
821
822 --
823 -- TABLE openwebauth-token
824 --
825 CREATE TABLE IF NOT EXISTS `openwebauth-token` (
826         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
827         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id - currently unused',
828         `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'Verify type',
829         `token` varchar(255) NOT NULL DEFAULT '' COMMENT 'A generated token',
830         `meta` varchar(255) NOT NULL DEFAULT '' COMMENT '',
831         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
832          PRIMARY KEY(`id`),
833          INDEX `uid` (`uid`),
834         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
835 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Store OpenWebAuth token to verify contacts';
836
837 --
838 -- TABLE parsed_url
839 --
840 CREATE TABLE IF NOT EXISTS `parsed_url` (
841         `url_hash` binary(64) NOT NULL COMMENT 'page url hash',
842         `guessing` boolean NOT NULL DEFAULT '0' COMMENT 'is the \'guessing\' mode active?',
843         `oembed` boolean NOT NULL DEFAULT '0' COMMENT 'is the data the result of oembed?',
844         `url` text NOT NULL COMMENT 'page url',
845         `content` mediumtext COMMENT 'page data',
846         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
847         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of expiration',
848          PRIMARY KEY(`url_hash`,`guessing`,`oembed`),
849          INDEX `created` (`created`),
850          INDEX `expires` (`expires`)
851 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='cache for \'parse_url\' queries';
852
853 --
854 -- TABLE pconfig
855 --
856 CREATE TABLE IF NOT EXISTS `pconfig` (
857         `id` int unsigned NOT NULL auto_increment COMMENT 'Primary key',
858         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
859         `cat` varchar(50) NOT NULL DEFAULT '' COMMENT 'Category',
860         `k` varchar(100) NOT NULL DEFAULT '' COMMENT 'Key',
861         `v` mediumtext COMMENT 'Value',
862          PRIMARY KEY(`id`),
863          UNIQUE INDEX `uid_cat_k` (`uid`,`cat`,`k`),
864         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
865 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='personal (per user) configuration storage';
866
867 --
868 -- TABLE photo
869 --
870 CREATE TABLE IF NOT EXISTS `photo` (
871         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
872         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
873         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
874         `guid` char(16) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this photo',
875         `resource-id` char(32) NOT NULL DEFAULT '' COMMENT '',
876         `hash` char(32) COMMENT 'hash value of the photo',
877         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation date',
878         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edited date',
879         `title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
880         `desc` text COMMENT '',
881         `album` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the album to which the photo belongs',
882         `filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
883         `type` varchar(30) NOT NULL DEFAULT 'image/jpeg',
884         `height` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
885         `width` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
886         `datasize` int unsigned NOT NULL DEFAULT 0 COMMENT '',
887         `data` mediumblob NOT NULL COMMENT '',
888         `scale` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
889         `profile` boolean NOT NULL DEFAULT '0' COMMENT '',
890         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
891         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
892         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
893         `deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
894         `accessible` boolean NOT NULL DEFAULT '0' COMMENT 'Make photo publicly accessible, ignoring permissions',
895         `backend-class` tinytext COMMENT 'Storage backend class',
896         `backend-ref` text COMMENT 'Storage backend data reference',
897         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
898          PRIMARY KEY(`id`),
899          INDEX `contactid` (`contact-id`),
900          INDEX `uid_contactid` (`uid`,`contact-id`),
901          INDEX `uid_profile` (`uid`,`profile`),
902          INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
903          INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`,`created`),
904          INDEX `resource-id` (`resource-id`),
905         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE RESTRICT,
906         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
907 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='photo storage';
908
909 --
910 -- TABLE post
911 --
912 CREATE TABLE IF NOT EXISTS `post` (
913         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
914         `parent-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the parent uri',
915         `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
916         `external-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the external uri',
917         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation timestamp.',
918         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last edit (default is created)',
919         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime',
920         `gravity` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
921         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network from where the item comes from',
922         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the owner of this item',
923         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
924         `causer-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
925         `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
926         `vid` smallint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
927         `private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0=public, 1=private, 2=unlisted',
928         `global` boolean NOT NULL DEFAULT '0' COMMENT '',
929         `visible` boolean NOT NULL DEFAULT '0' COMMENT '',
930         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'item has been marked for deletion',
931          PRIMARY KEY(`uri-id`),
932          INDEX `parent-uri-id` (`parent-uri-id`),
933          INDEX `thr-parent-id` (`thr-parent-id`),
934          INDEX `external-id` (`external-id`),
935          INDEX `owner-id` (`owner-id`),
936          INDEX `author-id` (`author-id`),
937          INDEX `causer-id` (`causer-id`),
938          INDEX `vid` (`vid`),
939          INDEX `received` (`received`),
940         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
941         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
942         FOREIGN KEY (`thr-parent-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
943         FOREIGN KEY (`external-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
944         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
945         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
946         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
947         FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
948 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Structure for all posts';
949
950 --
951 -- TABLE post-category
952 --
953 CREATE TABLE IF NOT EXISTS `post-category` (
954         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
955         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
956         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
957         `tid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
958          PRIMARY KEY(`uri-id`,`uid`,`type`,`tid`),
959          INDEX `uri-id` (`tid`),
960          INDEX `uid` (`uid`),
961         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
962         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
963         FOREIGN KEY (`tid`) REFERENCES `tag` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
964 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='post relation to categories';
965
966 --
967 -- TABLE post-content
968 --
969 CREATE TABLE IF NOT EXISTS `post-content` (
970         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
971         `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'item title',
972         `content-warning` varchar(255) NOT NULL DEFAULT '' COMMENT '',
973         `body` mediumtext COMMENT 'item body content',
974         `raw-body` mediumtext COMMENT 'Body without embedded media links',
975         `location` varchar(255) NOT NULL DEFAULT '' COMMENT 'text location where this item originated',
976         `coord` varchar(255) NOT NULL DEFAULT '' COMMENT 'longitude/latitude pair representing location where this item originated',
977         `language` text COMMENT 'Language information about this post',
978         `app` varchar(255) NOT NULL DEFAULT '' COMMENT 'application which generated this item',
979         `rendered-hash` varchar(32) NOT NULL DEFAULT '' COMMENT '',
980         `rendered-html` mediumtext COMMENT 'item.body converted to html',
981         `object-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams object type',
982         `object` text COMMENT 'JSON encoded object structure unless it is an implied object (normal post)',
983         `target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
984         `target` text COMMENT 'JSON encoded target structure if used',
985         `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',
986         `plink` varchar(255) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
987          PRIMARY KEY(`uri-id`),
988          INDEX `plink` (`plink`(191)),
989          FULLTEXT INDEX `title-content-warning-body` (`title`,`content-warning`,`body`),
990         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
991 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Content for all posts';
992
993 --
994 -- TABLE post-delivery-data
995 --
996 CREATE TABLE IF NOT EXISTS `post-delivery-data` (
997         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
998         `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',
999         `inform` mediumtext COMMENT 'Additional receivers of the linked item',
1000         `queue_count` mediumint NOT NULL DEFAULT 0 COMMENT 'Initial number of delivery recipients, used as item.delivery_queue_count',
1001         `queue_done` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries, used as item.delivery_queue_done',
1002         `queue_failed` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of unsuccessful deliveries, used as item.delivery_queue_failed',
1003         `activitypub` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via ActivityPub',
1004         `dfrn` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via DFRN',
1005         `legacy_dfrn` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via legacy DFRN',
1006         `diaspora` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via Diaspora',
1007         `ostatus` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via OStatus',
1008          PRIMARY KEY(`uri-id`),
1009         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1010 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for items';
1011
1012 --
1013 -- TABLE post-media
1014 --
1015 CREATE TABLE IF NOT EXISTS `post-media` (
1016         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1017         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1018         `url` varbinary(511) NOT NULL COMMENT 'Media URL',
1019         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Media type',
1020         `mimetype` varchar(60) COMMENT '',
1021         `height` smallint unsigned COMMENT 'Height of the media',
1022         `width` smallint unsigned COMMENT 'Width of the media',
1023         `size` int unsigned COMMENT 'Media size',
1024         `preview` varbinary(255) COMMENT 'Preview URL',
1025         `preview-height` smallint unsigned COMMENT 'Height of the preview picture',
1026         `preview-width` smallint unsigned COMMENT 'Width of the preview picture',
1027         `description` text COMMENT '',
1028          PRIMARY KEY(`id`),
1029          UNIQUE INDEX `uri-id-url` (`uri-id`,`url`),
1030         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1031 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Attached media';
1032
1033 --
1034 -- TABLE post-tag
1035 --
1036 CREATE TABLE IF NOT EXISTS `post-tag` (
1037         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1038         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1039         `tid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1040         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Contact id of the mentioned public contact',
1041          PRIMARY KEY(`uri-id`,`type`,`tid`,`cid`),
1042          INDEX `tid` (`tid`),
1043          INDEX `cid` (`cid`),
1044         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1045         FOREIGN KEY (`tid`) REFERENCES `tag` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1046         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1047 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='post relation to tags';
1048
1049 --
1050 -- TABLE post-thread
1051 --
1052 CREATE TABLE IF NOT EXISTS `post-thread` (
1053         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1054         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item owner',
1055         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item author',
1056         `causer-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1057         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
1058         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1059         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1060         `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',
1061         `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1062          PRIMARY KEY(`uri-id`),
1063          INDEX `owner-id` (`owner-id`),
1064          INDEX `author-id` (`author-id`),
1065          INDEX `causer-id` (`causer-id`),
1066          INDEX `received` (`received`),
1067          INDEX `commented` (`commented`),
1068          INDEX `changed` (`changed`),
1069         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1070         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1071         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1072         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1073 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Thread related data';
1074
1075 --
1076 -- TABLE post-user
1077 --
1078 CREATE TABLE IF NOT EXISTS `post-user` (
1079         `id` int unsigned NOT NULL auto_increment,
1080         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1081         `parent-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the parent uri',
1082         `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
1083         `external-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the external uri',
1084         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation timestamp.',
1085         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last edit (default is created)',
1086         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime',
1087         `gravity` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1088         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network from where the item comes from',
1089         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the owner of this item',
1090         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
1091         `causer-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1092         `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
1093         `vid` smallint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
1094         `private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0=public, 1=private, 2=unlisted',
1095         `global` boolean NOT NULL DEFAULT '0' COMMENT '',
1096         `visible` boolean NOT NULL DEFAULT '0' COMMENT '',
1097         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'item has been marked for deletion',
1098         `uid` mediumint unsigned NOT NULL COMMENT 'Owner id which owns this copy of the item',
1099         `protocol` tinyint unsigned COMMENT 'Protocol used to deliver the item for this user',
1100         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
1101         `event-id` int unsigned COMMENT 'Used to link to the event.id',
1102         `unseen` boolean NOT NULL DEFAULT '1' COMMENT 'post has not been seen',
1103         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide the post from the user',
1104         `notification-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1105         `wall` boolean NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid',
1106         `origin` boolean NOT NULL DEFAULT '0' COMMENT 'item originated at this site',
1107         `psid` int unsigned COMMENT 'ID of the permission set of this post',
1108          PRIMARY KEY(`id`),
1109          UNIQUE INDEX `uid_uri-id` (`uid`,`uri-id`),
1110          INDEX `uri-id` (`uri-id`),
1111          INDEX `contact-id` (`contact-id`),
1112          INDEX `psid` (`psid`),
1113          INDEX `uid_hidden` (`uid`,`hidden`),
1114          INDEX `event-id` (`event-id`),
1115          INDEX `uid_wall` (`uid`,`wall`),
1116          INDEX `parent-uri-id_uid` (`parent-uri-id`,`uid`),
1117          INDEX `thr-parent-id` (`thr-parent-id`),
1118          INDEX `external-id` (`external-id`),
1119          INDEX `owner-id` (`owner-id`),
1120          INDEX `author-id_uid` (`author-id`,`uid`),
1121          INDEX `causer-id` (`causer-id`),
1122          INDEX `vid` (`vid`),
1123          INDEX `uid_received` (`uid`,`received`),
1124          INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
1125          INDEX `uid_network_received` (`uid`,`network`,`received`),
1126          INDEX `uid_contactid_received` (`uid`,`contact-id`,`received`),
1127          INDEX `authorid_received` (`author-id`,`received`),
1128          INDEX `uid_unseen_wall` (`uid`,`unseen`,`wall`),
1129          INDEX `uid_eventid` (`uid`,`event-id`),
1130          INDEX `psid_wall` (`psid`,`wall`),
1131         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1132         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1133         FOREIGN KEY (`thr-parent-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1134         FOREIGN KEY (`external-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1135         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1136         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1137         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1138         FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1139         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1140         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1141         FOREIGN KEY (`event-id`) REFERENCES `event` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1142         FOREIGN KEY (`psid`) REFERENCES `permissionset` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1143 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific post data';
1144
1145 --
1146 -- TABLE post-thread-user
1147 --
1148 CREATE TABLE IF NOT EXISTS `post-thread-user` (
1149         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1150         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item owner',
1151         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item author',
1152         `causer-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1153         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
1154         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1155         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1156         `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',
1157         `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1158         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id which owns this copy of the item',
1159         `pinned` boolean NOT NULL DEFAULT '0' COMMENT 'The thread is pinned on the profile page',
1160         `starred` boolean NOT NULL DEFAULT '0' COMMENT '',
1161         `ignored` boolean NOT NULL DEFAULT '0' COMMENT 'Ignore updates for this thread',
1162         `wall` boolean NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid',
1163         `mention` boolean NOT NULL DEFAULT '0' COMMENT '',
1164         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
1165         `forum_mode` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1166         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
1167         `unseen` boolean NOT NULL DEFAULT '1' COMMENT 'post has not been seen',
1168         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide the post from the user',
1169         `origin` boolean NOT NULL DEFAULT '0' COMMENT 'item originated at this site',
1170         `psid` int unsigned COMMENT 'ID of the permission set of this post',
1171         `post-user-id` int unsigned COMMENT 'Id of the post-user table',
1172          PRIMARY KEY(`uid`,`uri-id`),
1173          INDEX `uid_wall` (`uid`,`wall`),
1174          INDEX `uid_pinned` (`uid`,`pinned`),
1175          INDEX `uri-id` (`uri-id`),
1176          INDEX `contact-id` (`contact-id`),
1177          INDEX `psid` (`psid`),
1178          INDEX `post-user-id` (`post-user-id`),
1179          INDEX `owner-id` (`owner-id`),
1180          INDEX `causer-id` (`causer-id`),
1181          INDEX `uid_received` (`uid`,`received`),
1182          INDEX `uid_commented` (`uid`,`commented`),
1183          INDEX `uid_changed` (`uid`,`changed`),
1184          INDEX `uid_contact-id` (`uid`,`contact-id`,`received`),
1185          INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
1186          INDEX `uid_network_received` (`uid`,`network`,`received`),
1187          INDEX `uid_network_commented` (`uid`,`network`,`commented`),
1188          INDEX `uid_contact-id_received` (`uid`,`contact-id`,`received`),
1189          INDEX `author-id_received` (`author-id`,`received`),
1190          INDEX `uid_wall_changed` (`uid`,`wall`,`changed`),
1191          INDEX `uid_unseen_wall` (`uid`,`unseen`,`wall`),
1192          INDEX `mention_uid` (`mention`,`uid`),
1193          INDEX `psid_wall` (`psid`,`wall`),
1194          INDEX `received` (`received`),
1195          INDEX `commented` (`commented`),
1196          INDEX `changed` (`changed`),
1197         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1198         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1199         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1200         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1201         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1202         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1203         FOREIGN KEY (`psid`) REFERENCES `permissionset` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1204         FOREIGN KEY (`post-user-id`) REFERENCES `post-user` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1205 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Thread related data per user';
1206
1207 --
1208 -- TABLE post-user-notification
1209 --
1210 CREATE TABLE IF NOT EXISTS `post-user-notification` (
1211         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1212         `uid` mediumint unsigned NOT NULL COMMENT 'Owner id which owns this copy of the item',
1213         `notification-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1214          PRIMARY KEY(`uid`,`uri-id`),
1215          INDEX `uri-id` (`uri-id`),
1216         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1217         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1218 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User post notifications';
1219
1220 --
1221 -- TABLE process
1222 --
1223 CREATE TABLE IF NOT EXISTS `process` (
1224         `pid` int unsigned NOT NULL COMMENT '',
1225         `command` varbinary(32) NOT NULL DEFAULT '' COMMENT '',
1226         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1227          PRIMARY KEY(`pid`),
1228          INDEX `command` (`command`)
1229 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Currently running system processes';
1230
1231 --
1232 -- TABLE profile
1233 --
1234 CREATE TABLE IF NOT EXISTS `profile` (
1235         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1236         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
1237         `profile-name` varchar(255) COMMENT 'Deprecated',
1238         `is-default` boolean COMMENT 'Deprecated',
1239         `hide-friends` boolean NOT NULL DEFAULT '0' COMMENT 'Hide friend list from viewers of this profile',
1240         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1241         `pdesc` varchar(255) COMMENT 'Deprecated',
1242         `dob` varchar(32) NOT NULL DEFAULT '0000-00-00' COMMENT 'Day of birth',
1243         `address` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1244         `locality` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1245         `region` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1246         `postal-code` varchar(32) NOT NULL DEFAULT '' COMMENT '',
1247         `country-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1248         `hometown` varchar(255) COMMENT 'Deprecated',
1249         `gender` varchar(32) COMMENT 'Deprecated',
1250         `marital` varchar(255) COMMENT 'Deprecated',
1251         `with` text COMMENT 'Deprecated',
1252         `howlong` datetime COMMENT 'Deprecated',
1253         `sexual` varchar(255) COMMENT 'Deprecated',
1254         `politic` varchar(255) COMMENT 'Deprecated',
1255         `religion` varchar(255) COMMENT 'Deprecated',
1256         `pub_keywords` text COMMENT '',
1257         `prv_keywords` text COMMENT '',
1258         `likes` text COMMENT 'Deprecated',
1259         `dislikes` text COMMENT 'Deprecated',
1260         `about` text COMMENT 'Profile description',
1261         `summary` varchar(255) COMMENT 'Deprecated',
1262         `music` text COMMENT 'Deprecated',
1263         `book` text COMMENT 'Deprecated',
1264         `tv` text COMMENT 'Deprecated',
1265         `film` text COMMENT 'Deprecated',
1266         `interest` text COMMENT 'Deprecated',
1267         `romance` text COMMENT 'Deprecated',
1268         `work` text COMMENT 'Deprecated',
1269         `education` text COMMENT 'Deprecated',
1270         `contact` text COMMENT 'Deprecated',
1271         `homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1272         `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1273         `photo` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1274         `thumb` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1275         `publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
1276         `net-publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish profile in global directory',
1277          PRIMARY KEY(`id`),
1278          INDEX `uid_is-default` (`uid`,`is-default`),
1279          FULLTEXT INDEX `pub_keywords` (`pub_keywords`),
1280         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1281 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='user profiles data';
1282
1283 --
1284 -- TABLE profile_check
1285 --
1286 CREATE TABLE IF NOT EXISTS `profile_check` (
1287         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1288         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1289         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
1290         `dfrn_id` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1291         `sec` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1292         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1293          PRIMARY KEY(`id`),
1294          INDEX `uid` (`uid`),
1295          INDEX `cid` (`cid`),
1296         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1297         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1298 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='DFRN remote auth use';
1299
1300 --
1301 -- TABLE profile_field
1302 --
1303 CREATE TABLE IF NOT EXISTS `profile_field` (
1304         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1305         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner user id',
1306         `order` mediumint unsigned NOT NULL DEFAULT 1 COMMENT 'Field ordering per user',
1307         `psid` int unsigned COMMENT 'ID of the permission set of this profile field - 0 = public',
1308         `label` varchar(255) NOT NULL DEFAULT '' COMMENT 'Label of the field',
1309         `value` text COMMENT 'Value of the field',
1310         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
1311         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
1312          PRIMARY KEY(`id`),
1313          INDEX `uid` (`uid`),
1314          INDEX `order` (`order`),
1315          INDEX `psid` (`psid`),
1316         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1317         FOREIGN KEY (`psid`) REFERENCES `permissionset` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1318 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Custom profile fields';
1319
1320 --
1321 -- TABLE push_subscriber
1322 --
1323 CREATE TABLE IF NOT EXISTS `push_subscriber` (
1324         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1325         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1326         `callback_url` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1327         `topic` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1328         `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1329         `push` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
1330         `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last successful trial',
1331         `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
1332         `renewed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last subscription renewal',
1333         `secret` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1334          PRIMARY KEY(`id`),
1335          INDEX `next_try` (`next_try`),
1336          INDEX `uid` (`uid`),
1337         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1338 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Used for OStatus: Contains feed subscribers';
1339
1340 --
1341 -- TABLE register
1342 --
1343 CREATE TABLE IF NOT EXISTS `register` (
1344         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1345         `hash` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1346         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1347         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1348         `password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1349         `language` varchar(16) NOT NULL DEFAULT '' COMMENT '',
1350         `note` text COMMENT '',
1351          PRIMARY KEY(`id`),
1352          INDEX `uid` (`uid`),
1353         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1354 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registrations requiring admin approval';
1355
1356 --
1357 -- TABLE search
1358 --
1359 CREATE TABLE IF NOT EXISTS `search` (
1360         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1361         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1362         `term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1363          PRIMARY KEY(`id`),
1364          INDEX `uid` (`uid`),
1365         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1366 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
1367
1368 --
1369 -- TABLE session
1370 --
1371 CREATE TABLE IF NOT EXISTS `session` (
1372         `id` bigint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1373         `sid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
1374         `data` text COMMENT '',
1375         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1376          PRIMARY KEY(`id`),
1377          INDEX `sid` (`sid`(64)),
1378          INDEX `expire` (`expire`)
1379 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='web session storage';
1380
1381 --
1382 -- TABLE storage
1383 --
1384 CREATE TABLE IF NOT EXISTS `storage` (
1385         `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented image data id',
1386         `data` longblob NOT NULL COMMENT 'file data',
1387          PRIMARY KEY(`id`)
1388 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Data stored by Database storage backend';
1389
1390 --
1391 -- TABLE tokens
1392 --
1393 CREATE TABLE IF NOT EXISTS `tokens` (
1394         `id` varchar(40) NOT NULL COMMENT '',
1395         `secret` text COMMENT '',
1396         `client_id` varchar(20) NOT NULL DEFAULT '',
1397         `expires` int NOT NULL DEFAULT 0 COMMENT '',
1398         `scope` varchar(200) NOT NULL DEFAULT '' COMMENT '',
1399         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1400          PRIMARY KEY(`id`),
1401          INDEX `client_id` (`client_id`),
1402          INDEX `uid` (`uid`),
1403         FOREIGN KEY (`client_id`) REFERENCES `clients` (`client_id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1404         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1405 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth usage';
1406
1407 --
1408 -- TABLE userd
1409 --
1410 CREATE TABLE IF NOT EXISTS `userd` (
1411         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1412         `username` varchar(255) NOT NULL COMMENT '',
1413          PRIMARY KEY(`id`),
1414          INDEX `username` (`username`(32))
1415 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Deleted usernames';
1416
1417 --
1418 -- TABLE user-contact
1419 --
1420 CREATE TABLE IF NOT EXISTS `user-contact` (
1421         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Contact id of the linked public contact',
1422         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1423         `blocked` boolean COMMENT 'Contact is completely blocked for this user',
1424         `ignored` boolean COMMENT 'Posts from this contact are ignored',
1425         `collapsed` boolean COMMENT 'Posts from this contact are collapsed',
1426          PRIMARY KEY(`uid`,`cid`),
1427          INDEX `cid` (`cid`),
1428         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1429         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1430 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific public contact data';
1431
1432 --
1433 -- TABLE worker-ipc
1434 --
1435 CREATE TABLE IF NOT EXISTS `worker-ipc` (
1436         `key` int NOT NULL COMMENT '',
1437         `jobs` boolean COMMENT 'Flag for outstanding jobs',
1438          PRIMARY KEY(`key`)
1439 ) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Inter process communication between the frontend and the worker';
1440
1441 --
1442 -- TABLE workerqueue
1443 --
1444 CREATE TABLE IF NOT EXISTS `workerqueue` (
1445         `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented worker task id',
1446         `command` varchar(100) COMMENT 'Task command',
1447         `parameter` mediumtext COMMENT 'Task parameter',
1448         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Task priority',
1449         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
1450         `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process id of the worker',
1451         `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Execution date',
1452         `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
1453         `retrial` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
1454         `done` boolean NOT NULL DEFAULT '0' COMMENT 'Marked 1 when the task was done - will be deleted later',
1455          PRIMARY KEY(`id`),
1456          INDEX `command` (`command`),
1457          INDEX `done_command_parameter` (`done`,`command`,`parameter`(64)),
1458          INDEX `done_executed` (`done`,`executed`),
1459          INDEX `done_priority_retrial_created` (`done`,`priority`,`retrial`,`created`),
1460          INDEX `done_priority_next_try` (`done`,`priority`,`next_try`),
1461          INDEX `done_pid_next_try` (`done`,`pid`,`next_try`),
1462          INDEX `done_pid_retrial` (`done`,`pid`,`retrial`),
1463          INDEX `done_pid_priority_created` (`done`,`pid`,`priority`,`created`)
1464 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries';
1465
1466 --
1467 -- VIEW post-view
1468 --
1469 DROP VIEW IF EXISTS `post-view`;
1470 CREATE VIEW `post-view` AS SELECT 
1471         `post-user`.`id` AS `id`,
1472         `post-user`.`id` AS `post-user-id`,
1473         `post-user`.`uid` AS `uid`,
1474         `parent-post`.`id` AS `parent`,
1475         `item-uri`.`uri` AS `uri`,
1476         `post-user`.`uri-id` AS `uri-id`,
1477         `parent-item-uri`.`uri` AS `parent-uri`,
1478         `post-user`.`parent-uri-id` AS `parent-uri-id`,
1479         `thr-parent-item-uri`.`uri` AS `thr-parent`,
1480         `post-user`.`thr-parent-id` AS `thr-parent-id`,
1481         `item-uri`.`guid` AS `guid`,
1482         `post-user`.`wall` AS `wall`,
1483         `post-user`.`gravity` AS `gravity`,
1484         `external-item-uri`.`uri` AS `extid`,
1485         `post-user`.`external-id` AS `external-id`,
1486         `post-user`.`created` AS `created`,
1487         `post-user`.`edited` AS `edited`,
1488         `post-thread-user`.`commented` AS `commented`,
1489         `post-user`.`received` AS `received`,
1490         `post-thread-user`.`changed` AS `changed`,
1491         `post-user`.`post-type` AS `post-type`,
1492         `post-user`.`private` AS `private`,
1493         `post-thread-user`.`pubmail` AS `pubmail`,
1494         `post-user`.`visible` AS `visible`,
1495         `post-thread-user`.`starred` AS `starred`,
1496         `post-user`.`unseen` AS `unseen`,
1497         `post-user`.`deleted` AS `deleted`,
1498         `post-user`.`origin` AS `origin`,
1499         `post-thread-user`.`origin` AS `parent-origin`,
1500         `post-thread-user`.`forum_mode` AS `forum_mode`,
1501         `post-thread-user`.`mention` AS `mention`,
1502         `post-user`.`global` AS `global`,
1503         `post-user`.`network` AS `network`,
1504         `post-user`.`vid` AS `vid`,
1505         `post-user`.`psid` AS `psid`,
1506         IF (`post-user`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
1507         `post-content`.`title` AS `title`,
1508         `post-content`.`content-warning` AS `content-warning`,
1509         `post-content`.`raw-body` AS `raw-body`,
1510         `post-content`.`body` AS `body`,
1511         `post-content`.`rendered-hash` AS `rendered-hash`,
1512         `post-content`.`rendered-html` AS `rendered-html`,
1513         `post-content`.`language` AS `language`,
1514         `post-content`.`plink` AS `plink`,
1515         `post-content`.`location` AS `location`,
1516         `post-content`.`coord` AS `coord`,
1517         `post-content`.`app` AS `app`,
1518         `post-content`.`object-type` AS `object-type`,
1519         `post-content`.`object` AS `object`,
1520         `post-content`.`target-type` AS `target-type`,
1521         `post-content`.`target` AS `target`,
1522         `post-content`.`resource-id` AS `resource-id`,
1523         `post-user`.`contact-id` AS `contact-id`,
1524         `contact`.`url` AS `contact-link`,
1525         `contact`.`addr` AS `contact-addr`,
1526         `contact`.`name` AS `contact-name`,
1527         `contact`.`nick` AS `contact-nick`,
1528         `contact`.`thumb` AS `contact-avatar`,
1529         `contact`.`network` AS `contact-network`,
1530         `contact`.`blocked` AS `contact-blocked`,
1531         `contact`.`hidden` AS `contact-hidden`,
1532         `contact`.`readonly` AS `contact-readonly`,
1533         `contact`.`archive` AS `contact-archive`,
1534         `contact`.`pending` AS `contact-pending`,
1535         `contact`.`rel` AS `contact-rel`,
1536         `contact`.`uid` AS `contact-uid`,
1537         `contact`.`contact-type` AS `contact-contact-type`,
1538         IF (`post-user`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`) AS `writable`,
1539         `contact`.`self` AS `self`,
1540         `contact`.`id` AS `cid`,
1541         `contact`.`alias` AS `alias`,
1542         `contact`.`photo` AS `photo`,
1543         `contact`.`name-date` AS `name-date`,
1544         `contact`.`uri-date` AS `uri-date`,
1545         `contact`.`avatar-date` AS `avatar-date`,
1546         `contact`.`thumb` AS `thumb`,
1547         `contact`.`dfrn-id` AS `dfrn-id`,
1548         `post-user`.`author-id` AS `author-id`,
1549         `author`.`url` AS `author-link`,
1550         `author`.`addr` AS `author-addr`,
1551         IF (`contact`.`url` = `author`.`url` AND `contact`.`name` != '', `contact`.`name`, `author`.`name`) AS `author-name`,
1552         `author`.`nick` AS `author-nick`,
1553         IF (`contact`.`url` = `author`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `author`.`thumb`) AS `author-avatar`,
1554         `author`.`network` AS `author-network`,
1555         `author`.`blocked` AS `author-blocked`,
1556         `author`.`hidden` AS `author-hidden`,
1557         `post-user`.`owner-id` AS `owner-id`,
1558         `owner`.`url` AS `owner-link`,
1559         `owner`.`addr` AS `owner-addr`,
1560         IF (`contact`.`url` = `owner`.`url` AND `contact`.`name` != '', `contact`.`name`, `owner`.`name`) AS `owner-name`,
1561         `owner`.`nick` AS `owner-nick`,
1562         IF (`contact`.`url` = `owner`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `owner`.`thumb`) AS `owner-avatar`,
1563         `owner`.`network` AS `owner-network`,
1564         `owner`.`blocked` AS `owner-blocked`,
1565         `owner`.`hidden` AS `owner-hidden`,
1566         `post-user`.`causer-id` AS `causer-id`,
1567         `causer`.`url` AS `causer-link`,
1568         `causer`.`addr` AS `causer-addr`,
1569         `causer`.`name` AS `causer-name`,
1570         `causer`.`nick` AS `causer-nick`,
1571         `causer`.`thumb` AS `causer-avatar`,
1572         `causer`.`network` AS `causer-network`,
1573         `causer`.`blocked` AS `causer-blocked`,
1574         `causer`.`hidden` AS `causer-hidden`,
1575         `causer`.`contact-type` AS `causer-contact-type`,
1576         `post-delivery-data`.`postopts` AS `postopts`,
1577         `post-delivery-data`.`inform` AS `inform`,
1578         `post-delivery-data`.`queue_count` AS `delivery_queue_count`,
1579         `post-delivery-data`.`queue_done` AS `delivery_queue_done`,
1580         `post-delivery-data`.`queue_failed` AS `delivery_queue_failed`,
1581         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`allow_cid`) AS `allow_cid`,
1582         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`allow_gid`) AS `allow_gid`,
1583         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`deny_cid`) AS `deny_cid`,
1584         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`deny_gid`) AS `deny_gid`,
1585         `post-user`.`event-id` AS `event-id`,
1586         `event`.`created` AS `event-created`,
1587         `event`.`edited` AS `event-edited`,
1588         `event`.`start` AS `event-start`,
1589         `event`.`finish` AS `event-finish`,
1590         `event`.`summary` AS `event-summary`,
1591         `event`.`desc` AS `event-desc`,
1592         `event`.`location` AS `event-location`,
1593         `event`.`type` AS `event-type`,
1594         `event`.`nofinish` AS `event-nofinish`,
1595         `event`.`adjust` AS `event-adjust`,
1596         `event`.`ignore` AS `event-ignore`,
1597         `diaspora-interaction`.`interaction` AS `signed_text`,
1598         `parent-item-uri`.`guid` AS `parent-guid`,
1599         `parent-post`.`network` AS `parent-network`,
1600         `parent-post`.`author-id` AS `parent-author-id`,
1601         `parent-post-author`.`url` AS `parent-author-link`,
1602         `parent-post-author`.`name` AS `parent-author-name`,
1603         `parent-post-author`.`network` AS `parent-author-network`
1604         FROM `post-user`
1605                         STRAIGHT_JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
1606                         LEFT JOIN `contact` ON `contact`.`id` = `post-user`.`contact-id`
1607                         LEFT JOIN `contact` AS `author` ON `author`.`id` = `post-user`.`author-id`
1608                         LEFT JOIN `contact` AS `owner` ON `owner`.`id` = `post-user`.`owner-id`
1609                         LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-user`.`causer-id`
1610                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `post-user`.`uri-id`
1611                         LEFT JOIN `item-uri` AS `thr-parent-item-uri` ON `thr-parent-item-uri`.`id` = `post-user`.`thr-parent-id`
1612                         LEFT JOIN `item-uri` AS `parent-item-uri` ON `parent-item-uri`.`id` = `post-user`.`parent-uri-id`
1613                         LEFT JOIN `item-uri` AS `external-item-uri` ON `external-item-uri`.`id` = `post-user`.`external-id`
1614                         LEFT JOIN `verb` ON `verb`.`id` = `post-user`.`vid`
1615                         LEFT JOIN `event` ON `event`.`id` = `post-user`.`event-id`
1616                         LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post-user`.`uri-id`
1617                         LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post-user`.`uri-id`
1618                         LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `post-user`.`uri-id` AND `post-user`.`origin`
1619                         LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-user`.`psid`
1620                         LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-user`.`uid`
1621                         LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `parent-post`.`author-id`;
1622
1623 --
1624 -- VIEW post-thread-view
1625 --
1626 DROP VIEW IF EXISTS `post-thread-view`;
1627 CREATE VIEW `post-thread-view` AS SELECT 
1628         `post-user`.`id` AS `id`,
1629         `post-user`.`id` AS `post-user-id`,
1630         `post-thread-user`.`uid` AS `uid`,
1631         `parent-post`.`id` AS `parent`,
1632         `item-uri`.`uri` AS `uri`,
1633         `post-thread-user`.`uri-id` AS `uri-id`,
1634         `parent-item-uri`.`uri` AS `parent-uri`,
1635         `post-user`.`parent-uri-id` AS `parent-uri-id`,
1636         `thr-parent-item-uri`.`uri` AS `thr-parent`,
1637         `post-user`.`thr-parent-id` AS `thr-parent-id`,
1638         `item-uri`.`guid` AS `guid`,
1639         `post-thread-user`.`wall` AS `wall`,
1640         `post-user`.`gravity` AS `gravity`,
1641         `external-item-uri`.`uri` AS `extid`,
1642         `post-user`.`external-id` AS `external-id`,
1643         `post-thread-user`.`created` AS `created`,
1644         `post-user`.`edited` AS `edited`,
1645         `post-thread-user`.`commented` AS `commented`,
1646         `post-thread-user`.`received` AS `received`,
1647         `post-thread-user`.`changed` AS `changed`,
1648         `post-user`.`post-type` AS `post-type`,
1649         `post-user`.`private` AS `private`,
1650         `post-thread-user`.`pubmail` AS `pubmail`,
1651         `post-thread-user`.`ignored` AS `ignored`,
1652         `post-user`.`visible` AS `visible`,
1653         `post-thread-user`.`starred` AS `starred`,
1654         `post-thread-user`.`unseen` AS `unseen`,
1655         `post-user`.`deleted` AS `deleted`,
1656         `post-thread-user`.`origin` AS `origin`,
1657         `post-thread-user`.`forum_mode` AS `forum_mode`,
1658         `post-thread-user`.`mention` AS `mention`,
1659         `post-user`.`global` AS `global`,
1660         `post-thread-user`.`network` AS `network`,
1661         `post-user`.`vid` AS `vid`,
1662         `post-thread-user`.`psid` AS `psid`,
1663         IF (`post-user`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
1664         `post-content`.`title` AS `title`,
1665         `post-content`.`content-warning` AS `content-warning`,
1666         `post-content`.`raw-body` AS `raw-body`,
1667         `post-content`.`body` AS `body`,
1668         `post-content`.`rendered-hash` AS `rendered-hash`,
1669         `post-content`.`rendered-html` AS `rendered-html`,
1670         `post-content`.`language` AS `language`,
1671         `post-content`.`plink` AS `plink`,
1672         `post-content`.`location` AS `location`,
1673         `post-content`.`coord` AS `coord`,
1674         `post-content`.`app` AS `app`,
1675         `post-content`.`object-type` AS `object-type`,
1676         `post-content`.`object` AS `object`,
1677         `post-content`.`target-type` AS `target-type`,
1678         `post-content`.`target` AS `target`,
1679         `post-content`.`resource-id` AS `resource-id`,
1680         `post-thread-user`.`contact-id` AS `contact-id`,
1681         `contact`.`url` AS `contact-link`,
1682         `contact`.`addr` AS `contact-addr`,
1683         `contact`.`name` AS `contact-name`,
1684         `contact`.`nick` AS `contact-nick`,
1685         `contact`.`thumb` AS `contact-avatar`,
1686         `contact`.`network` AS `contact-network`,
1687         `contact`.`blocked` AS `contact-blocked`,
1688         `contact`.`hidden` AS `contact-hidden`,
1689         `contact`.`readonly` AS `contact-readonly`,
1690         `contact`.`archive` AS `contact-archive`,
1691         `contact`.`pending` AS `contact-pending`,
1692         `contact`.`rel` AS `contact-rel`,
1693         `contact`.`uid` AS `contact-uid`,
1694         `contact`.`contact-type` AS `contact-contact-type`,
1695         IF (`post-user`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`) AS `writable`,
1696         `contact`.`self` AS `self`,
1697         `contact`.`id` AS `cid`,
1698         `contact`.`alias` AS `alias`,
1699         `contact`.`photo` AS `photo`,
1700         `contact`.`name-date` AS `name-date`,
1701         `contact`.`uri-date` AS `uri-date`,
1702         `contact`.`avatar-date` AS `avatar-date`,
1703         `contact`.`thumb` AS `thumb`,
1704         `contact`.`dfrn-id` AS `dfrn-id`,
1705         `post-thread-user`.`author-id` AS `author-id`,
1706         `author`.`url` AS `author-link`,
1707         `author`.`addr` AS `author-addr`,
1708         IF (`contact`.`url` = `author`.`url` AND `contact`.`name` != '', `contact`.`name`, `author`.`name`) AS `author-name`,
1709         `author`.`nick` AS `author-nick`,
1710         IF (`contact`.`url` = `author`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `author`.`thumb`) AS `author-avatar`,
1711         `author`.`network` AS `author-network`,
1712         `author`.`blocked` AS `author-blocked`,
1713         `author`.`hidden` AS `author-hidden`,
1714         `post-thread-user`.`owner-id` AS `owner-id`,
1715         `owner`.`url` AS `owner-link`,
1716         `owner`.`addr` AS `owner-addr`,
1717         IF (`contact`.`url` = `owner`.`url` AND `contact`.`name` != '', `contact`.`name`, `owner`.`name`) AS `owner-name`,
1718         `owner`.`nick` AS `owner-nick`,
1719         IF (`contact`.`url` = `owner`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `owner`.`thumb`) AS `owner-avatar`,
1720         `owner`.`network` AS `owner-network`,
1721         `owner`.`blocked` AS `owner-blocked`,
1722         `owner`.`hidden` AS `owner-hidden`,
1723         `post-thread-user`.`causer-id` AS `causer-id`,
1724         `causer`.`url` AS `causer-link`,
1725         `causer`.`addr` AS `causer-addr`,
1726         `causer`.`name` AS `causer-name`,
1727         `causer`.`nick` AS `causer-nick`,
1728         `causer`.`thumb` AS `causer-avatar`,
1729         `causer`.`network` AS `causer-network`,
1730         `causer`.`blocked` AS `causer-blocked`,
1731         `causer`.`hidden` AS `causer-hidden`,
1732         `causer`.`contact-type` AS `causer-contact-type`,
1733         `post-delivery-data`.`postopts` AS `postopts`,
1734         `post-delivery-data`.`inform` AS `inform`,
1735         `post-delivery-data`.`queue_count` AS `delivery_queue_count`,
1736         `post-delivery-data`.`queue_done` AS `delivery_queue_done`,
1737         `post-delivery-data`.`queue_failed` AS `delivery_queue_failed`,
1738         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`allow_cid`) AS `allow_cid`,
1739         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`allow_gid`) AS `allow_gid`,
1740         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`deny_cid`) AS `deny_cid`,
1741         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`deny_gid`) AS `deny_gid`,
1742         `post-user`.`event-id` AS `event-id`,
1743         `event`.`created` AS `event-created`,
1744         `event`.`edited` AS `event-edited`,
1745         `event`.`start` AS `event-start`,
1746         `event`.`finish` AS `event-finish`,
1747         `event`.`summary` AS `event-summary`,
1748         `event`.`desc` AS `event-desc`,
1749         `event`.`location` AS `event-location`,
1750         `event`.`type` AS `event-type`,
1751         `event`.`nofinish` AS `event-nofinish`,
1752         `event`.`adjust` AS `event-adjust`,
1753         `event`.`ignore` AS `event-ignore`,
1754         `diaspora-interaction`.`interaction` AS `signed_text`,
1755         `parent-item-uri`.`guid` AS `parent-guid`,
1756         `parent-post`.`network` AS `parent-network`,
1757         `parent-post`.`author-id` AS `parent-author-id`,
1758         `parent-post-author`.`url` AS `parent-author-link`,
1759         `parent-post-author`.`name` AS `parent-author-name`,
1760         `parent-post-author`.`network` AS `parent-author-network`
1761         FROM `post-thread-user`
1762                         INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id`
1763                         LEFT JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
1764                         LEFT JOIN `contact` AS `author` ON `author`.`id` = `post-thread-user`.`author-id`
1765                         LEFT JOIN `contact` AS `owner` ON `owner`.`id` = `post-thread-user`.`owner-id`
1766                         LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-thread-user`.`causer-id`
1767                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `post-thread-user`.`uri-id`
1768                         LEFT JOIN `item-uri` AS `thr-parent-item-uri` ON `thr-parent-item-uri`.`id` = `post-user`.`thr-parent-id`
1769                         LEFT JOIN `item-uri` AS `parent-item-uri` ON `parent-item-uri`.`id` = `post-user`.`parent-uri-id`
1770                         LEFT JOIN `item-uri` AS `external-item-uri` ON `external-item-uri`.`id` = `post-user`.`external-id`
1771                         LEFT JOIN `verb` ON `verb`.`id` = `post-user`.`vid`
1772                         LEFT JOIN `event` ON `event`.`id` = `post-user`.`event-id`
1773                         LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post-thread-user`.`uri-id`
1774                         LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post-thread-user`.`uri-id`
1775                         LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `post-thread-user`.`uri-id` AND `post-thread-user`.`origin`
1776                         LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-thread-user`.`psid`
1777                         LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-thread-user`.`uid`
1778                         LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `parent-post`.`author-id`;
1779
1780 --
1781 -- VIEW category-view
1782 --
1783 DROP VIEW IF EXISTS `category-view`;
1784 CREATE VIEW `category-view` AS SELECT 
1785         `post-category`.`uri-id` AS `uri-id`,
1786         `post-category`.`uid` AS `uid`,
1787         `post-category`.`type` AS `type`,
1788         `post-category`.`tid` AS `tid`,
1789         `tag`.`name` AS `name`,
1790         `tag`.`url` AS `url`
1791         FROM `post-category`
1792                         LEFT JOIN `tag` ON `post-category`.`tid` = `tag`.`id`;
1793
1794 --
1795 -- VIEW tag-view
1796 --
1797 DROP VIEW IF EXISTS `tag-view`;
1798 CREATE VIEW `tag-view` AS SELECT 
1799         `post-tag`.`uri-id` AS `uri-id`,
1800         `post-tag`.`type` AS `type`,
1801         `post-tag`.`tid` AS `tid`,
1802         `post-tag`.`cid` AS `cid`,
1803         CASE `cid` WHEN 0 THEN `tag`.`name` ELSE `contact`.`name` END AS `name`,
1804         CASE `cid` WHEN 0 THEN `tag`.`url` ELSE `contact`.`url` END AS `url`
1805         FROM `post-tag`
1806                         LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
1807                         LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`;
1808
1809 --
1810 -- VIEW network-item-view
1811 --
1812 DROP VIEW IF EXISTS `network-item-view`;
1813 CREATE VIEW `network-item-view` AS SELECT 
1814         `post-user`.`uri-id` AS `uri-id`,
1815         `parent-post`.`id` AS `parent`,
1816         `post-user`.`received` AS `received`,
1817         `post-thread-user`.`commented` AS `commented`,
1818         `post-user`.`created` AS `created`,
1819         `post-user`.`uid` AS `uid`,
1820         `post-thread-user`.`starred` AS `starred`,
1821         `post-thread-user`.`mention` AS `mention`,
1822         `post-user`.`network` AS `network`,
1823         `post-user`.`unseen` AS `unseen`,
1824         `post-user`.`gravity` AS `gravity`,
1825         `post-user`.`contact-id` AS `contact-id`,
1826         `ownercontact`.`contact-type` AS `contact-type`
1827         FROM `post-user`
1828                         STRAIGHT_JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`                  
1829                         INNER JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
1830                         LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `post-thread-user`.`uid` AND `author`.`cid` = `post-thread-user`.`author-id`
1831                         LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `post-thread-user`.`uid` AND `owner`.`cid` = `post-thread-user`.`owner-id`
1832                         INNER JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id`
1833                         LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-user`.`uid`
1834                         WHERE `post-user`.`visible` AND NOT `post-user`.`deleted`
1835                         AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
1836                         AND (`post-user`.`hidden` IS NULL OR NOT `post-user`.`hidden`)
1837                         AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
1838                         AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`);
1839
1840 --
1841 -- VIEW network-thread-view
1842 --
1843 DROP VIEW IF EXISTS `network-thread-view`;
1844 CREATE VIEW `network-thread-view` AS SELECT 
1845         `post-thread-user`.`uri-id` AS `uri-id`,
1846         `parent-post`.`id` AS `parent`,
1847         `post-thread-user`.`received` AS `received`,
1848         `post-thread-user`.`commented` AS `commented`,
1849         `post-thread-user`.`created` AS `created`,
1850         `post-thread-user`.`uid` AS `uid`,
1851         `post-thread-user`.`starred` AS `starred`,
1852         `post-thread-user`.`mention` AS `mention`,
1853         `post-thread-user`.`network` AS `network`,
1854         `post-thread-user`.`contact-id` AS `contact-id`,
1855         `ownercontact`.`contact-type` AS `contact-type`
1856         FROM `post-thread-user`
1857                         INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id`
1858                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
1859                         LEFT JOIN `user-contact` AS `author` ON `author`.`uid` = `post-thread-user`.`uid` AND `author`.`cid` = `post-thread-user`.`author-id`
1860                         LEFT JOIN `user-contact` AS `owner` ON `owner`.`uid` = `post-thread-user`.`uid` AND `owner`.`cid` = `post-thread-user`.`owner-id`
1861                         LEFT JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id`
1862                         LEFT JOIN `post-user` AS `parent-post` ON `parent-post`.`uri-id` = `post-user`.`parent-uri-id` AND `parent-post`.`uid` = `post-user`.`uid`
1863                         WHERE `post-user`.`visible` AND NOT `post-user`.`deleted`
1864                         AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
1865                         AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
1866                         AND (`author`.`blocked` IS NULL OR NOT `author`.`blocked`)
1867                         AND (`owner`.`blocked` IS NULL OR NOT `owner`.`blocked`);
1868
1869 --
1870 -- VIEW owner-view
1871 --
1872 DROP VIEW IF EXISTS `owner-view`;
1873 CREATE VIEW `owner-view` AS SELECT 
1874         `contact`.`id` AS `id`,
1875         `contact`.`uid` AS `uid`,
1876         `contact`.`created` AS `created`,
1877         `contact`.`updated` AS `updated`,
1878         `contact`.`self` AS `self`,
1879         `contact`.`remote_self` AS `remote_self`,
1880         `contact`.`rel` AS `rel`,
1881         `contact`.`duplex` AS `duplex`,
1882         `contact`.`network` AS `network`,
1883         `contact`.`protocol` AS `protocol`,
1884         `contact`.`name` AS `name`,
1885         `contact`.`nick` AS `nick`,
1886         `contact`.`location` AS `location`,
1887         `contact`.`about` AS `about`,
1888         `contact`.`keywords` AS `keywords`,
1889         `contact`.`gender` AS `gender`,
1890         `contact`.`xmpp` AS `xmpp`,
1891         `contact`.`attag` AS `attag`,
1892         `contact`.`avatar` AS `avatar`,
1893         `contact`.`photo` AS `photo`,
1894         `contact`.`thumb` AS `thumb`,
1895         `contact`.`micro` AS `micro`,
1896         `contact`.`site-pubkey` AS `site-pubkey`,
1897         `contact`.`issued-id` AS `issued-id`,
1898         `contact`.`dfrn-id` AS `dfrn-id`,
1899         `contact`.`url` AS `url`,
1900         `contact`.`nurl` AS `nurl`,
1901         `contact`.`addr` AS `addr`,
1902         `contact`.`alias` AS `alias`,
1903         `contact`.`pubkey` AS `pubkey`,
1904         `contact`.`prvkey` AS `prvkey`,
1905         `contact`.`batch` AS `batch`,
1906         `contact`.`request` AS `request`,
1907         `contact`.`notify` AS `notify`,
1908         `contact`.`poll` AS `poll`,
1909         `contact`.`confirm` AS `confirm`,
1910         `contact`.`poco` AS `poco`,
1911         `contact`.`aes_allow` AS `aes_allow`,
1912         `contact`.`ret-aes` AS `ret-aes`,
1913         `contact`.`usehub` AS `usehub`,
1914         `contact`.`subhub` AS `subhub`,
1915         `contact`.`hub-verify` AS `hub-verify`,
1916         `contact`.`last-update` AS `last-update`,
1917         `contact`.`success_update` AS `success_update`,
1918         `contact`.`failure_update` AS `failure_update`,
1919         `contact`.`name-date` AS `name-date`,
1920         `contact`.`uri-date` AS `uri-date`,
1921         `contact`.`avatar-date` AS `avatar-date`,
1922         `contact`.`avatar-date` AS `picdate`,
1923         `contact`.`term-date` AS `term-date`,
1924         `contact`.`last-item` AS `last-item`,
1925         `contact`.`priority` AS `priority`,
1926         `user`.`blocked` AS `blocked`,
1927         `contact`.`block_reason` AS `block_reason`,
1928         `contact`.`readonly` AS `readonly`,
1929         `contact`.`writable` AS `writable`,
1930         `contact`.`forum` AS `forum`,
1931         `contact`.`prv` AS `prv`,
1932         `contact`.`contact-type` AS `contact-type`,
1933         `contact`.`manually-approve` AS `manually-approve`,
1934         `contact`.`hidden` AS `hidden`,
1935         `contact`.`archive` AS `archive`,
1936         `contact`.`pending` AS `pending`,
1937         `contact`.`deleted` AS `deleted`,
1938         `contact`.`unsearchable` AS `unsearchable`,
1939         `contact`.`sensitive` AS `sensitive`,
1940         `contact`.`baseurl` AS `baseurl`,
1941         `contact`.`reason` AS `reason`,
1942         `contact`.`closeness` AS `closeness`,
1943         `contact`.`info` AS `info`,
1944         `contact`.`profile-id` AS `profile-id`,
1945         `contact`.`bdyear` AS `bdyear`,
1946         `contact`.`bd` AS `bd`,
1947         `contact`.`notify_new_posts` AS `notify_new_posts`,
1948         `contact`.`fetch_further_information` AS `fetch_further_information`,
1949         `contact`.`ffi_keyword_denylist` AS `ffi_keyword_denylist`,
1950         `user`.`parent-uid` AS `parent-uid`,
1951         `user`.`guid` AS `guid`,
1952         `user`.`nickname` AS `nickname`,
1953         `user`.`email` AS `email`,
1954         `user`.`openid` AS `openid`,
1955         `user`.`timezone` AS `timezone`,
1956         `user`.`language` AS `language`,
1957         `user`.`register_date` AS `register_date`,
1958         `user`.`login_date` AS `login_date`,
1959         `user`.`default-location` AS `default-location`,
1960         `user`.`allow_location` AS `allow_location`,
1961         `user`.`theme` AS `theme`,
1962         `user`.`pubkey` AS `upubkey`,
1963         `user`.`prvkey` AS `uprvkey`,
1964         `user`.`sprvkey` AS `sprvkey`,
1965         `user`.`spubkey` AS `spubkey`,
1966         `user`.`verified` AS `verified`,
1967         `user`.`blockwall` AS `blockwall`,
1968         `user`.`hidewall` AS `hidewall`,
1969         `user`.`blocktags` AS `blocktags`,
1970         `user`.`unkmail` AS `unkmail`,
1971         `user`.`cntunkmail` AS `cntunkmail`,
1972         `user`.`notify-flags` AS `notify-flags`,
1973         `user`.`page-flags` AS `page-flags`,
1974         `user`.`account-type` AS `account-type`,
1975         `user`.`prvnets` AS `prvnets`,
1976         `user`.`maxreq` AS `maxreq`,
1977         `user`.`expire` AS `expire`,
1978         `user`.`account_removed` AS `account_removed`,
1979         `user`.`account_expired` AS `account_expired`,
1980         `user`.`account_expires_on` AS `account_expires_on`,
1981         `user`.`expire_notification_sent` AS `expire_notification_sent`,
1982         `user`.`def_gid` AS `def_gid`,
1983         `user`.`allow_cid` AS `allow_cid`,
1984         `user`.`allow_gid` AS `allow_gid`,
1985         `user`.`deny_cid` AS `deny_cid`,
1986         `user`.`deny_gid` AS `deny_gid`,
1987         `user`.`openidserver` AS `openidserver`,
1988         `profile`.`publish` AS `publish`,
1989         `profile`.`net-publish` AS `net-publish`,
1990         `profile`.`hide-friends` AS `hide-friends`,
1991         `profile`.`prv_keywords` AS `prv_keywords`,
1992         `profile`.`pub_keywords` AS `pub_keywords`,
1993         `profile`.`address` AS `address`,
1994         `profile`.`locality` AS `locality`,
1995         `profile`.`region` AS `region`,
1996         `profile`.`postal-code` AS `postal-code`,
1997         `profile`.`country-name` AS `country-name`,
1998         `profile`.`homepage` AS `homepage`,
1999         `profile`.`dob` AS `dob`
2000         FROM `user`
2001                         INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
2002                         INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid`;
2003
2004 --
2005 -- VIEW pending-view
2006 --
2007 DROP VIEW IF EXISTS `pending-view`;
2008 CREATE VIEW `pending-view` AS SELECT 
2009         `register`.`id` AS `id`,
2010         `register`.`hash` AS `hash`,
2011         `register`.`created` AS `created`,
2012         `register`.`uid` AS `uid`,
2013         `register`.`password` AS `password`,
2014         `register`.`language` AS `language`,
2015         `register`.`note` AS `note`,
2016         `contact`.`self` AS `self`,
2017         `contact`.`name` AS `name`,
2018         `contact`.`url` AS `url`,
2019         `contact`.`micro` AS `micro`,
2020         `user`.`email` AS `email`,
2021         `contact`.`nick` AS `nick`
2022         FROM `register`
2023                         INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid`
2024                         INNER JOIN `user` ON `register`.`uid` = `user`.`uid`;
2025
2026 --
2027 -- VIEW tag-search-view
2028 --
2029 DROP VIEW IF EXISTS `tag-search-view`;
2030 CREATE VIEW `tag-search-view` AS SELECT 
2031         `post-tag`.`uri-id` AS `uri-id`,
2032         `post-user`.`uid` AS `uid`,
2033         `post-user`.`id` AS `iid`,
2034         `post-user`.`private` AS `private`,
2035         `post-user`.`wall` AS `wall`,
2036         `post-user`.`origin` AS `origin`,
2037         `post-user`.`gravity` AS `gravity`,
2038         `post-user`.`received` AS `received`,
2039         `tag`.`name` AS `name`
2040         FROM `post-tag`
2041                         INNER JOIN `tag` ON `tag`.`id` = `post-tag`.`tid`
2042                         STRAIGHT_JOIN `post-user` ON `post-user`.`uri-id` = `post-tag`.`uri-id`
2043                         WHERE `post-tag`.`type` = 1;
2044
2045 --
2046 -- VIEW workerqueue-view
2047 --
2048 DROP VIEW IF EXISTS `workerqueue-view`;
2049 CREATE VIEW `workerqueue-view` AS SELECT 
2050         `process`.`pid` AS `pid`,
2051         `workerqueue`.`priority` AS `priority`
2052         FROM `process`
2053                         INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
2054                         WHERE NOT `workerqueue`.`done`;