]> git.mxchange.org Git - friendica.git/blob - database.sql
Calculate the interaction score
[friendica.git] / database.sql
1 -- ------------------------------------------
2 -- Friendica 2023.09-dev (Giant Rhubarb)
3 -- DB_UPDATE_VERSION 1530
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` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
13         `nurl` varbinary(383) 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         `active-week-users` int unsigned COMMENT 'Number of active users in the last week',
20         `active-month-users` int unsigned COMMENT 'Number of active users in the last month',
21         `active-halfyear-users` int unsigned COMMENT 'Number of active users in the last six month',
22         `local-posts` int unsigned COMMENT 'Number of local posts',
23         `local-comments` int unsigned COMMENT 'Number of local comments',
24         `directory-type` tinyint DEFAULT 0 COMMENT 'Type of directory service (Poco, Mastodon)',
25         `poco` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
26         `noscrape` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
27         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
28         `protocol` tinyint unsigned COMMENT 'The protocol of the server',
29         `platform` varchar(255) NOT NULL DEFAULT '' COMMENT '',
30         `relay-subscribe` boolean NOT NULL DEFAULT '0' COMMENT 'Has the server subscribed to the relay system',
31         `relay-scope` varchar(10) NOT NULL DEFAULT '' COMMENT 'The scope of messages that the server wants to get',
32         `detection-method` tinyint unsigned COMMENT 'Method that had been used to detect that server',
33         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
34         `last_poco_query` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
35         `last_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Last successful connection request',
36         `last_failure` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Last failed connection request',
37         `blocked` boolean COMMENT 'Server is blocked',
38         `failed` boolean COMMENT 'Connection failed',
39         `next_contact` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Next connection request',
40          PRIMARY KEY(`id`),
41          UNIQUE INDEX `nurl` (`nurl`(190)),
42          INDEX `next_contact` (`next_contact`),
43          INDEX `network` (`network`)
44 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Global servers';
45
46 --
47 -- TABLE user
48 --
49 CREATE TABLE IF NOT EXISTS `user` (
50         `uid` mediumint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
51         `parent-uid` mediumint unsigned COMMENT 'The parent user that has full control about this user',
52         `guid` varchar(64) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this user',
53         `username` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this user is known by',
54         `password` varchar(255) NOT NULL DEFAULT '' COMMENT 'encrypted password',
55         `legacy_password` boolean NOT NULL DEFAULT '0' COMMENT 'Is the password hash double-hashed?',
56         `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT 'nick- and user name',
57         `email` varchar(255) NOT NULL DEFAULT '' COMMENT 'the users email address',
58         `openid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
59         `timezone` varchar(128) NOT NULL DEFAULT '' COMMENT 'PHP-legal timezone',
60         `language` varchar(32) NOT NULL DEFAULT 'en' COMMENT 'default language',
61         `register_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of registration',
62         `login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last login',
63         `last-activity` date COMMENT 'Day of the last activity',
64         `default-location` varchar(255) NOT NULL DEFAULT '' COMMENT 'Default for item.location',
65         `allow_location` boolean NOT NULL DEFAULT '0' COMMENT '1 allows to display the location',
66         `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'user theme preference',
67         `pubkey` text COMMENT 'RSA public key 4096 bit',
68         `prvkey` text COMMENT 'RSA private key 4096 bit',
69         `spubkey` text COMMENT '',
70         `sprvkey` text COMMENT '',
71         `verified` boolean NOT NULL DEFAULT '0' COMMENT 'user is verified through email',
72         `blocked` boolean NOT NULL DEFAULT '0' COMMENT '1 for user is blocked',
73         `blockwall` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user',
74         `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unknown viewers',
75         `blocktags` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user',
76         `unkmail` boolean NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user',
77         `cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '',
78         `notify-flags` smallint unsigned NOT NULL DEFAULT 65535 COMMENT 'email notification options',
79         `page-flags` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'page/profile type',
80         `account-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
81         `prvnets` boolean NOT NULL DEFAULT '0' COMMENT '',
82         `pwdreset` varchar(255) COMMENT 'Password reset request token',
83         `pwdreset_time` datetime COMMENT 'Timestamp of the last password reset request',
84         `maxreq` int unsigned NOT NULL DEFAULT 10 COMMENT '',
85         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT 'Delay in days before deleting user-related posts. Scope is controlled by pConfig.',
86         `account_removed` boolean NOT NULL DEFAULT '0' COMMENT 'if 1 the account is removed',
87         `account_expired` boolean NOT NULL DEFAULT '0' COMMENT '',
88         `account_expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp when account expires and will be deleted',
89         `expire_notification_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'timestamp of last warning of account expiration',
90         `def_gid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
91         `allow_cid` mediumtext COMMENT 'default permission for this user',
92         `allow_gid` mediumtext COMMENT 'default permission for this user',
93         `deny_cid` mediumtext COMMENT 'default permission for this user',
94         `deny_gid` mediumtext COMMENT 'default permission for this user',
95         `openidserver` text COMMENT '',
96          PRIMARY KEY(`uid`),
97          INDEX `nickname` (`nickname`(32)),
98          INDEX `parent-uid` (`parent-uid`),
99          INDEX `guid` (`guid`),
100          INDEX `email` (`email`(64)),
101         FOREIGN KEY (`parent-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
102 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='The local users';
103
104 --
105 -- TABLE user-gserver
106 --
107 CREATE TABLE IF NOT EXISTS `user-gserver` (
108         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
109         `gsid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Gserver id',
110         `ignored` boolean NOT NULL DEFAULT '0' COMMENT 'server accounts are ignored for the user',
111          PRIMARY KEY(`uid`,`gsid`),
112          INDEX `gsid` (`gsid`),
113         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
114         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
115 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User settings about remote servers';
116
117 --
118 -- TABLE item-uri
119 --
120 CREATE TABLE IF NOT EXISTS `item-uri` (
121         `id` int unsigned NOT NULL auto_increment,
122         `uri` varbinary(383) NOT NULL COMMENT 'URI of an item',
123         `guid` varbinary(255) COMMENT 'A unique identifier for an item',
124          PRIMARY KEY(`id`),
125          UNIQUE INDEX `uri` (`uri`),
126          INDEX `guid` (`guid`)
127 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='URI and GUID for items';
128
129 --
130 -- TABLE contact
131 --
132 CREATE TABLE IF NOT EXISTS `contact` (
133         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
134         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
135         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
136         `updated` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last contact update',
137         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network of the contact',
138         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name that this contact is known by',
139         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT 'Nick- and user name of the contact',
140         `location` varchar(255) DEFAULT '' COMMENT '',
141         `about` text COMMENT '',
142         `keywords` text COMMENT 'public keywords (interests) of the contact',
143         `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
144         `matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
145         `avatar` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
146         `blurhash` varbinary(255) COMMENT 'BlurHash representation of the avatar',
147         `header` varbinary(383) COMMENT 'Header picture',
148         `url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
149         `nurl` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
150         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the contact url',
151         `addr` varchar(255) NOT NULL DEFAULT '' COMMENT '',
152         `alias` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
153         `pubkey` text COMMENT 'RSA public key 4096 bit',
154         `prvkey` text COMMENT 'RSA private key 4096 bit',
155         `batch` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
156         `notify` varbinary(383) COMMENT '',
157         `poll` varbinary(383) COMMENT '',
158         `subscribe` varbinary(383) COMMENT '',
159         `last-update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last try to update the contact info',
160         `next-update` datetime COMMENT 'Next connection request',
161         `success_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful contact update',
162         `failure_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed update',
163         `failed` boolean COMMENT 'Connection failed',
164         `term-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
165         `last-item` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'date of the last post',
166         `last-discovery` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'date of the last follower discovery',
167         `local-data` boolean COMMENT 'Is true when there are posts with this contact on the system',
168         `blocked` boolean NOT NULL DEFAULT '1' COMMENT 'Node-wide block status',
169         `block_reason` text COMMENT 'Node-wide block reason',
170         `readonly` boolean NOT NULL DEFAULT '0' COMMENT 'posts of the contact are readonly',
171         `contact-type` tinyint NOT NULL DEFAULT 0 COMMENT 'Person, organisation, news, community, relay',
172         `manually-approve` boolean COMMENT 'Contact requests have to be approved manually',
173         `archive` boolean NOT NULL DEFAULT '0' COMMENT '',
174         `unsearchable` boolean NOT NULL DEFAULT '0' COMMENT 'Contact prefers to not be searchable',
175         `sensitive` boolean NOT NULL DEFAULT '0' COMMENT 'Contact posts sensitive content',
176         `baseurl` varbinary(383) DEFAULT '' COMMENT 'baseurl of the contact from the gserver record, can be missing',
177         `gsid` int unsigned COMMENT 'Global Server ID, can be missing',
178         `bd` date NOT NULL DEFAULT '0001-01-01' COMMENT '',
179         `reason` text COMMENT '',
180         `self` boolean NOT NULL DEFAULT '0' COMMENT '1 if the contact is the user him/her self',
181         `remote_self` boolean NOT NULL DEFAULT '0' COMMENT '',
182         `rel` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'The kind of the relation between the user and the contact',
183         `protocol` char(4) NOT NULL DEFAULT '' COMMENT 'Protocol of the contact',
184         `subhub` boolean NOT NULL DEFAULT '0' COMMENT '',
185         `hub-verify` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
186         `rating` tinyint NOT NULL DEFAULT 0 COMMENT 'Automatically detected feed poll frequency',
187         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Feed poll priority',
188         `attag` varchar(255) NOT NULL DEFAULT '' COMMENT '',
189         `hidden` boolean NOT NULL DEFAULT '0' COMMENT '',
190         `pending` boolean NOT NULL DEFAULT '1' COMMENT 'Contact request is pending',
191         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'Contact has been deleted',
192         `info` mediumtext COMMENT '',
193         `notify_new_posts` boolean NOT NULL DEFAULT '0' COMMENT '',
194         `fetch_further_information` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
195         `ffi_keyword_denylist` text COMMENT '',
196         `photo` varbinary(383) DEFAULT '' COMMENT 'Link to the profile photo of the contact',
197         `thumb` varbinary(383) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)',
198         `micro` varbinary(383) DEFAULT '' COMMENT 'Link to the profile photo (micro size)',
199         `name-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
200         `uri-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
201         `avatar-date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
202         `request` varbinary(383) COMMENT '',
203         `confirm` varbinary(383) COMMENT '',
204         `poco` varbinary(383) COMMENT '',
205         `writable` boolean NOT NULL DEFAULT '0' COMMENT '',
206         `forum` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a group. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = false instead',
207         `prv` boolean NOT NULL DEFAULT '0' COMMENT 'contact is a private group. Deprecated, use \'contact-type\' = \'community\' and \'manually-approve\' = true instead',
208         `bdyear` varchar(4) NOT NULL DEFAULT '' COMMENT '',
209         `site-pubkey` text COMMENT 'Deprecated',
210         `gender` varchar(32) NOT NULL DEFAULT '' COMMENT 'Deprecated',
211         `duplex` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
212         `issued-id` varbinary(383) NOT NULL DEFAULT '' COMMENT 'Deprecated',
213         `dfrn-id` varbinary(383) NOT NULL DEFAULT '' COMMENT 'Deprecated',
214         `aes_allow` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
215         `ret-aes` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
216         `usehub` boolean NOT NULL DEFAULT '0' COMMENT 'Deprecated',
217         `closeness` tinyint unsigned NOT NULL DEFAULT 99 COMMENT 'Deprecated',
218         `profile-id` int unsigned COMMENT 'Deprecated',
219          PRIMARY KEY(`id`),
220          INDEX `uid_name` (`uid`,`name`(190)),
221          INDEX `self_uid` (`self`,`uid`),
222          INDEX `alias_uid` (`alias`(128),`uid`),
223          INDEX `pending_uid` (`pending`,`uid`),
224          INDEX `blocked_uid` (`blocked`,`uid`),
225          INDEX `uid_rel_network_poll` (`uid`,`rel`,`network`,`poll`(64),`archive`),
226          INDEX `uid_network_batch` (`uid`,`network`,`batch`(64)),
227          INDEX `batch_contact-type` (`batch`(64),`contact-type`),
228          INDEX `addr_uid` (`addr`(128),`uid`),
229          INDEX `nurl_uid` (`nurl`(128),`uid`),
230          INDEX `nick_uid` (`nick`(128),`uid`),
231          INDEX `attag_uid` (`attag`(96),`uid`),
232          INDEX `network_uid_lastupdate` (`network`,`uid`,`last-update`),
233          INDEX `uid_network_self_lastupdate` (`uid`,`network`,`self`,`last-update`),
234          INDEX `next-update` (`next-update`),
235          INDEX `local-data-next-update` (`local-data`,`next-update`),
236          INDEX `uid_lastitem` (`uid`,`last-item`),
237          INDEX `baseurl` (`baseurl`(64)),
238          INDEX `uid_contact-type` (`uid`,`contact-type`),
239          INDEX `uid_self_contact-type` (`uid`,`self`,`contact-type`),
240          INDEX `self_network_uid` (`self`,`network`,`uid`),
241          INDEX `gsid_uid_failed` (`gsid`,`uid`,`failed`),
242          INDEX `uri-id` (`uri-id`),
243         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
244         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
245         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
246 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='contact table';
247
248 --
249 -- TABLE tag
250 --
251 CREATE TABLE IF NOT EXISTS `tag` (
252         `id` int unsigned NOT NULL auto_increment COMMENT '',
253         `name` varchar(96) NOT NULL DEFAULT '' COMMENT '',
254         `url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
255         `type` tinyint unsigned COMMENT 'Type of the tag (Unknown, General Collection, Follower Collection or Account)',
256          PRIMARY KEY(`id`),
257          UNIQUE INDEX `type_name_url` (`name`,`url`),
258          INDEX `url` (`url`)
259 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='tags and mentions';
260
261 --
262 -- TABLE permissionset
263 --
264 CREATE TABLE IF NOT EXISTS `permissionset` (
265         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
266         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id of this permission set',
267         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
268         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles',
269         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
270         `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles',
271          PRIMARY KEY(`id`),
272          INDEX `uid_allow_cid_allow_gid_deny_cid_deny_gid` (`uid`,`allow_cid`(50),`allow_gid`(30),`deny_cid`(50),`deny_gid`(30)),
273         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
274 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
275
276 --
277 -- TABLE verb
278 --
279 CREATE TABLE IF NOT EXISTS `verb` (
280         `id` smallint unsigned NOT NULL auto_increment,
281         `name` varchar(100) NOT NULL DEFAULT '' COMMENT '',
282          PRIMARY KEY(`id`),
283          INDEX `name` (`name`)
284 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activity Verbs';
285
286 --
287 -- TABLE 2fa_app_specific_password
288 --
289 CREATE TABLE IF NOT EXISTS `2fa_app_specific_password` (
290         `id` mediumint unsigned NOT NULL auto_increment COMMENT 'Password ID for revocation',
291         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
292         `description` varchar(255) COMMENT 'Description of the usage of the password',
293         `hashed_password` varchar(255) NOT NULL COMMENT 'Hashed password',
294         `generated` datetime NOT NULL COMMENT 'Datetime the password was generated',
295         `last_used` datetime COMMENT 'Datetime the password was last used',
296          PRIMARY KEY(`id`),
297          INDEX `uid_description` (`uid`,`description`(190)),
298         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
299 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor app-specific _password';
300
301 --
302 -- TABLE 2fa_recovery_codes
303 --
304 CREATE TABLE IF NOT EXISTS `2fa_recovery_codes` (
305         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
306         `code` varchar(50) NOT NULL COMMENT 'Recovery code string',
307         `generated` datetime NOT NULL COMMENT 'Datetime the code was generated',
308         `used` datetime COMMENT 'Datetime the code was used',
309          PRIMARY KEY(`uid`,`code`),
310         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
311 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor authentication recovery codes';
312
313 --
314 -- TABLE 2fa_trusted_browser
315 --
316 CREATE TABLE IF NOT EXISTS `2fa_trusted_browser` (
317         `cookie_hash` varchar(80) NOT NULL COMMENT 'Trusted cookie hash',
318         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
319         `user_agent` text COMMENT 'User agent string',
320         `trusted` boolean NOT NULL DEFAULT '1' COMMENT 'Whenever this browser should be trusted or not',
321         `created` datetime NOT NULL COMMENT 'Datetime the trusted browser was recorded',
322         `last_used` datetime COMMENT 'Datetime the trusted browser was last used',
323          PRIMARY KEY(`cookie_hash`),
324          INDEX `uid` (`uid`),
325         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
326 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Two-factor authentication trusted browsers';
327
328 --
329 -- TABLE account-suggestion
330 --
331 CREATE TABLE IF NOT EXISTS `account-suggestion` (
332         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the account url',
333         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
334         `level` smallint unsigned COMMENT 'level of closeness',
335         `ignore` boolean NOT NULL DEFAULT '0' COMMENT 'If set, this account will not be suggested again',
336          PRIMARY KEY(`uid`,`uri-id`),
337          INDEX `uri-id_uid` (`uri-id`,`uid`),
338         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
339         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
340 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Account suggestion';
341
342 --
343 -- TABLE account-user
344 --
345 CREATE TABLE IF NOT EXISTS `account-user` (
346         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
347         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the account url',
348         `uid` mediumint unsigned NOT NULL COMMENT 'User ID',
349          PRIMARY KEY(`id`),
350          UNIQUE INDEX `uri-id_uid` (`uri-id`,`uid`),
351          INDEX `uid_uri-id` (`uid`,`uri-id`),
352         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
353         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
354 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Remote and local accounts';
355
356 --
357 -- TABLE apcontact
358 --
359 CREATE TABLE IF NOT EXISTS `apcontact` (
360         `url` varbinary(383) NOT NULL COMMENT 'URL of the contact',
361         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the apcontact url',
362         `uuid` varbinary(255) COMMENT '',
363         `type` varchar(20) NOT NULL COMMENT '',
364         `following` varbinary(383) COMMENT '',
365         `followers` varbinary(383) COMMENT '',
366         `inbox` varbinary(383) NOT NULL COMMENT '',
367         `outbox` varbinary(383) COMMENT '',
368         `sharedinbox` varbinary(383) COMMENT '',
369         `featured` varbinary(383) COMMENT 'Address for the collection of featured posts',
370         `featured-tags` varbinary(383) COMMENT 'Address for the collection of featured tags',
371         `manually-approve` boolean COMMENT '',
372         `discoverable` boolean COMMENT 'Mastodon extension: true if profile is published in their directory',
373         `suspended` boolean COMMENT 'Mastodon extension: true if profile is suspended',
374         `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '',
375         `name` varchar(255) COMMENT '',
376         `about` text COMMENT '',
377         `xmpp` varchar(255) COMMENT 'XMPP address',
378         `matrix` varchar(255) COMMENT 'Matrix address',
379         `photo` varbinary(383) COMMENT '',
380         `header` varbinary(383) COMMENT 'Header picture',
381         `addr` varchar(255) COMMENT '',
382         `alias` varbinary(383) COMMENT '',
383         `pubkey` text COMMENT '',
384         `subscribe` varbinary(383) COMMENT '',
385         `baseurl` varbinary(383) COMMENT 'baseurl of the ap contact',
386         `gsid` int unsigned COMMENT 'Global Server ID',
387         `generator` varchar(255) COMMENT 'Name of the contact\'s system',
388         `following_count` int unsigned DEFAULT 0 COMMENT 'Number of following contacts',
389         `followers_count` int unsigned DEFAULT 0 COMMENT 'Number of followers',
390         `statuses_count` int unsigned DEFAULT 0 COMMENT 'Number of posts',
391         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
392          PRIMARY KEY(`url`),
393          INDEX `addr` (`addr`(32)),
394          INDEX `alias` (`alias`(190)),
395          INDEX `followers` (`followers`(190)),
396          INDEX `baseurl` (`baseurl`(190)),
397          INDEX `sharedinbox` (`sharedinbox`(190)),
398          INDEX `gsid` (`gsid`),
399          UNIQUE INDEX `uri-id` (`uri-id`),
400         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
401         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
402 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub compatible contacts - used in the ActivityPub implementation';
403
404 --
405 -- TABLE application
406 --
407 CREATE TABLE IF NOT EXISTS `application` (
408         `id` int unsigned NOT NULL auto_increment COMMENT 'generated index',
409         `client_id` varchar(64) NOT NULL COMMENT '',
410         `client_secret` varchar(64) NOT NULL COMMENT '',
411         `name` varchar(255) NOT NULL COMMENT '',
412         `redirect_uri` varbinary(383) NOT NULL COMMENT '',
413         `website` varbinary(383) COMMENT '',
414         `scopes` varchar(255) COMMENT '',
415         `read` boolean COMMENT 'Read scope',
416         `write` boolean COMMENT 'Write scope',
417         `follow` boolean COMMENT 'Follow scope',
418         `push` boolean COMMENT 'Push scope',
419          PRIMARY KEY(`id`),
420          UNIQUE INDEX `client_id` (`client_id`)
421 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth application';
422
423 --
424 -- TABLE application-marker
425 --
426 CREATE TABLE IF NOT EXISTS `application-marker` (
427         `application-id` int unsigned NOT NULL COMMENT '',
428         `uid` mediumint unsigned NOT NULL COMMENT 'Owner User id',
429         `timeline` varchar(64) NOT NULL COMMENT 'Marker (home, notifications)',
430         `last_read_id` varbinary(383) COMMENT 'Marker id for the timeline',
431         `version` smallint unsigned COMMENT 'Version number',
432         `updated_at` datetime COMMENT 'creation time',
433          PRIMARY KEY(`application-id`,`uid`,`timeline`),
434          INDEX `uid_id` (`uid`),
435         FOREIGN KEY (`application-id`) REFERENCES `application` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
436         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
437 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Timeline marker';
438
439 --
440 -- TABLE application-token
441 --
442 CREATE TABLE IF NOT EXISTS `application-token` (
443         `application-id` int unsigned NOT NULL COMMENT '',
444         `uid` mediumint unsigned NOT NULL COMMENT 'Owner User id',
445         `code` varchar(64) NOT NULL COMMENT '',
446         `access_token` varchar(64) NOT NULL COMMENT '',
447         `created_at` datetime NOT NULL COMMENT 'creation time',
448         `scopes` varchar(255) COMMENT '',
449         `read` boolean COMMENT 'Read scope',
450         `write` boolean COMMENT 'Write scope',
451         `follow` boolean COMMENT 'Follow scope',
452         `push` boolean COMMENT 'Push scope',
453          PRIMARY KEY(`application-id`,`uid`),
454          INDEX `uid_id` (`uid`,`application-id`),
455         FOREIGN KEY (`application-id`) REFERENCES `application` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
456         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
457 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='OAuth user token';
458
459 --
460 -- TABLE attach
461 --
462 CREATE TABLE IF NOT EXISTS `attach` (
463         `id` int unsigned NOT NULL auto_increment COMMENT 'generated index',
464         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
465         `hash` varchar(64) NOT NULL DEFAULT '' COMMENT 'hash',
466         `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'filename of original',
467         `filetype` varchar(64) NOT NULL DEFAULT '' COMMENT 'mimetype',
468         `filesize` int unsigned NOT NULL DEFAULT 0 COMMENT 'size in bytes',
469         `data` longblob NOT NULL COMMENT 'file data',
470         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
471         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
472         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>',
473         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles',
474         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
475         `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles',
476         `backend-class` tinytext COMMENT 'Storage backend class',
477         `backend-ref` text COMMENT 'Storage backend data reference',
478          PRIMARY KEY(`id`),
479          INDEX `uid` (`uid`),
480         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
481 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='file attachments';
482
483 --
484 -- TABLE cache
485 --
486 CREATE TABLE IF NOT EXISTS `cache` (
487         `k` varbinary(255) NOT NULL COMMENT 'cache key',
488         `v` mediumtext COMMENT 'cached serialized value',
489         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
490         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache insertion',
491          PRIMARY KEY(`k`),
492          INDEX `k_expires` (`k`,`expires`)
493 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data';
494
495 --
496 -- TABLE config
497 --
498 CREATE TABLE IF NOT EXISTS `config` (
499         `id` int unsigned NOT NULL auto_increment COMMENT '',
500         `cat` varbinary(50) NOT NULL DEFAULT '' COMMENT 'The category of the entry',
501         `k` varbinary(50) NOT NULL DEFAULT '' COMMENT 'The key of the entry',
502         `v` mediumtext COMMENT '',
503          PRIMARY KEY(`id`),
504          UNIQUE INDEX `cat_k` (`cat`,`k`)
505 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='main configuration storage';
506
507 --
508 -- TABLE contact-relation
509 --
510 CREATE TABLE IF NOT EXISTS `contact-relation` (
511         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact the related contact had interacted with',
512         `relation-cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'related contact who had interacted with the contact',
513         `last-interaction` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last interaction',
514         `follow-updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last update of the contact relationship',
515         `follows` boolean NOT NULL DEFAULT '0' COMMENT '',
516         `score` smallint unsigned COMMENT 'score for interactions of cid on relation-cid',
517         `relation-score` smallint unsigned COMMENT 'score for interactions of relation-cid on cid',
518         `thread-score` smallint unsigned COMMENT 'score for interactions of cid on threads of relation-cid',
519         `relation-thread-score` smallint unsigned COMMENT 'score for interactions of relation-cid on threads of cid',
520          PRIMARY KEY(`cid`,`relation-cid`),
521          INDEX `relation-cid` (`relation-cid`),
522         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
523         FOREIGN KEY (`relation-cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
524 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Contact relations';
525
526 --
527 -- TABLE conv
528 --
529 CREATE TABLE IF NOT EXISTS `conv` (
530         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
531         `guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this conversation',
532         `recips` text COMMENT 'sender_handle;recipient_handle',
533         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
534         `creator` varchar(255) NOT NULL DEFAULT '' COMMENT 'handle of creator',
535         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation timestamp',
536         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'edited timestamp',
537         `subject` text COMMENT 'subject of initial message',
538          PRIMARY KEY(`id`),
539          INDEX `uid` (`uid`),
540         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
541 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages';
542
543 --
544 -- TABLE workerqueue
545 --
546 CREATE TABLE IF NOT EXISTS `workerqueue` (
547         `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented worker task id',
548         `command` varchar(100) COMMENT 'Task command',
549         `parameter` mediumtext COMMENT 'Task parameter',
550         `priority` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Task priority',
551         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date',
552         `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process id of the worker',
553         `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Execution date',
554         `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
555         `retrial` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
556         `done` boolean NOT NULL DEFAULT '0' COMMENT 'Marked 1 when the task was done - will be deleted later',
557          PRIMARY KEY(`id`),
558          INDEX `command` (`command`),
559          INDEX `done_command_parameter` (`done`,`command`,`parameter`(64)),
560          INDEX `done_executed` (`done`,`executed`),
561          INDEX `done_priority_retrial_created` (`done`,`priority`,`retrial`,`created`),
562          INDEX `done_priority_next_try` (`done`,`priority`,`next_try`),
563          INDEX `done_pid_next_try` (`done`,`pid`,`next_try`),
564          INDEX `done_pid_retrial` (`done`,`pid`,`retrial`),
565          INDEX `done_pid_priority_created` (`done`,`pid`,`priority`,`created`)
566 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Background tasks queue entries';
567
568 --
569 -- TABLE delayed-post
570 --
571 CREATE TABLE IF NOT EXISTS `delayed-post` (
572         `id` int unsigned NOT NULL auto_increment,
573         `uri` varbinary(383) COMMENT 'URI of the post that will be distributed later',
574         `uid` mediumint unsigned COMMENT 'Owner User id',
575         `delayed` datetime COMMENT 'delay time',
576         `wid` int unsigned COMMENT 'Workerqueue id',
577          PRIMARY KEY(`id`),
578          UNIQUE INDEX `uid_uri` (`uid`,`uri`(190)),
579          INDEX `wid` (`wid`),
580         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
581         FOREIGN KEY (`wid`) REFERENCES `workerqueue` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
582 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Posts that are about to be distributed at a later time';
583
584 --
585 -- TABLE delivery-queue
586 --
587 CREATE TABLE IF NOT EXISTS `delivery-queue` (
588         `gsid` int unsigned NOT NULL COMMENT 'Target server',
589         `uri-id` int unsigned NOT NULL COMMENT 'Delivered post',
590         `created` datetime COMMENT '',
591         `command` varbinary(32) COMMENT '',
592         `cid` int unsigned COMMENT 'Target contact',
593         `uid` mediumint unsigned COMMENT 'Delivering user',
594         `failed` tinyint DEFAULT 0 COMMENT 'Number of times the delivery has failed',
595          PRIMARY KEY(`uri-id`,`gsid`),
596          INDEX `gsid_created` (`gsid`,`created`),
597          INDEX `uid` (`uid`),
598          INDEX `cid` (`cid`),
599         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
600         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
601         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
602         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
603 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for posts for the batch processing';
604
605 --
606 -- TABLE diaspora-contact
607 --
608 CREATE TABLE IF NOT EXISTS `diaspora-contact` (
609         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the contact URL',
610         `addr` varchar(255) COMMENT '',
611         `alias` varchar(255) COMMENT '',
612         `nick` varchar(255) COMMENT '',
613         `name` varchar(255) COMMENT '',
614         `given-name` varchar(255) COMMENT '',
615         `family-name` varchar(255) COMMENT '',
616         `photo` varchar(255) COMMENT '',
617         `photo-medium` varchar(255) COMMENT '',
618         `photo-small` varchar(255) COMMENT '',
619         `batch` varchar(255) COMMENT '',
620         `notify` varchar(255) COMMENT '',
621         `poll` varchar(255) COMMENT '',
622         `subscribe` varchar(255) COMMENT '',
623         `searchable` boolean COMMENT '',
624         `pubkey` text COMMENT '',
625         `gsid` int unsigned COMMENT 'Global Server ID',
626         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
627         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
628         `interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interacts with',
629         `interacted_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts that interacted with this contact',
630         `post_count` int unsigned DEFAULT 0 COMMENT 'Number of posts and comments',
631          PRIMARY KEY(`uri-id`),
632          UNIQUE INDEX `addr` (`addr`),
633          INDEX `alias` (`alias`),
634          INDEX `gsid` (`gsid`),
635         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
636         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
637 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Diaspora compatible contacts - used in the Diaspora implementation';
638
639 --
640 -- TABLE diaspora-interaction
641 --
642 CREATE TABLE IF NOT EXISTS `diaspora-interaction` (
643         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
644         `interaction` mediumtext COMMENT 'The Diaspora interaction',
645          PRIMARY KEY(`uri-id`),
646         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
647 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Signed Diaspora Interaction';
648
649 --
650 -- TABLE endpoint
651 --
652 CREATE TABLE IF NOT EXISTS `endpoint` (
653         `url` varbinary(383) NOT NULL COMMENT 'URL of the contact',
654         `type` varchar(20) NOT NULL COMMENT '',
655         `owner-uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the apcontact url',
656          PRIMARY KEY(`url`),
657          UNIQUE INDEX `owner-uri-id_type` (`owner-uri-id`,`type`),
658         FOREIGN KEY (`owner-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
659 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='ActivityPub endpoints - used in the ActivityPub implementation';
660
661 --
662 -- TABLE event
663 --
664 CREATE TABLE IF NOT EXISTS `event` (
665         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
666         `guid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
667         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
668         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact_id (ID of the contact in contact table)',
669         `uri` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
670         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the event uri',
671         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
672         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
673         `start` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event start time',
674         `finish` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'event end time',
675         `summary` text COMMENT 'short description or title of the event',
676         `desc` text COMMENT 'event description',
677         `location` text COMMENT 'event location',
678         `type` varchar(20) NOT NULL DEFAULT '' COMMENT 'event or birthday',
679         `nofinish` boolean NOT NULL DEFAULT '0' COMMENT 'if event does have no end this is 1',
680         `ignore` boolean NOT NULL DEFAULT '0' COMMENT '0 or 1',
681         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
682         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles',
683         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
684         `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles',
685          PRIMARY KEY(`id`),
686          INDEX `uid_start` (`uid`,`start`),
687          INDEX `cid` (`cid`),
688          INDEX `uri-id` (`uri-id`),
689         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
690         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
691         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
692 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Events';
693
694 --
695 -- TABLE fetch-entry
696 --
697 CREATE TABLE IF NOT EXISTS `fetch-entry` (
698         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
699         `url` varbinary(383) COMMENT 'url that awaiting to be fetched',
700         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of the fetch request',
701         `wid` int unsigned COMMENT 'Workerqueue id',
702          PRIMARY KEY(`id`),
703          UNIQUE INDEX `url` (`url`),
704          INDEX `created` (`created`),
705          INDEX `wid` (`wid`),
706         FOREIGN KEY (`wid`) REFERENCES `workerqueue` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
707 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
708
709 --
710 -- TABLE fsuggest
711 --
712 CREATE TABLE IF NOT EXISTS `fsuggest` (
713         `id` int unsigned NOT NULL auto_increment COMMENT '',
714         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
715         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
716         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
717         `url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
718         `request` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
719         `photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
720         `note` text COMMENT '',
721         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
722          PRIMARY KEY(`id`),
723          INDEX `cid` (`cid`),
724          INDEX `uid` (`uid`),
725         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
726         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
727 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='friend suggestion stuff';
728
729 --
730 -- TABLE group
731 --
732 CREATE TABLE IF NOT EXISTS `group` (
733         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
734         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
735         `visible` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the member list is not private',
736         `deleted` boolean NOT NULL DEFAULT '0' COMMENT '1 indicates the circle has been deleted',
737         `cid` int unsigned COMMENT 'Contact id of group. When this field is filled then the members are synced automatically.',
738         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'human readable name of circle',
739          PRIMARY KEY(`id`),
740          INDEX `uid` (`uid`),
741          INDEX `cid` (`cid`),
742         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
743         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
744 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy circles, circle info';
745
746 --
747 -- TABLE group_member
748 --
749 CREATE TABLE IF NOT EXISTS `group_member` (
750         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
751         `gid` int unsigned NOT NULL DEFAULT 0 COMMENT 'group.id of the associated circle',
752         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id of the member assigned to the associated circle',
753          PRIMARY KEY(`id`),
754          INDEX `contactid` (`contact-id`),
755          UNIQUE INDEX `gid_contactid` (`gid`,`contact-id`),
756         FOREIGN KEY (`gid`) REFERENCES `group` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
757         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
758 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='privacy circles, member info';
759
760 --
761 -- TABLE gserver-tag
762 --
763 CREATE TABLE IF NOT EXISTS `gserver-tag` (
764         `gserver-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'The id of the gserver',
765         `tag` varchar(100) NOT NULL DEFAULT '' COMMENT 'Tag that the server has subscribed',
766          PRIMARY KEY(`gserver-id`,`tag`),
767          INDEX `tag` (`tag`),
768         FOREIGN KEY (`gserver-id`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
769 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Tags that the server has subscribed';
770
771 --
772 -- TABLE hook
773 --
774 CREATE TABLE IF NOT EXISTS `hook` (
775         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
776         `hook` varbinary(100) NOT NULL DEFAULT '' COMMENT 'name of hook',
777         `file` varbinary(200) NOT NULL DEFAULT '' COMMENT 'relative filename of hook handler',
778         `function` varbinary(200) NOT NULL DEFAULT '' COMMENT 'function name of hook handler',
779         `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',
780          PRIMARY KEY(`id`),
781          INDEX `priority` (`priority`),
782          UNIQUE INDEX `hook_file_function` (`hook`,`file`,`function`)
783 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='addon hook registry';
784
785 --
786 -- TABLE inbox-entry
787 --
788 CREATE TABLE IF NOT EXISTS `inbox-entry` (
789         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
790         `activity-id` varbinary(383) COMMENT 'id of the incoming activity',
791         `object-id` varbinary(383) COMMENT '',
792         `in-reply-to-id` varbinary(383) COMMENT '',
793         `conversation` varbinary(383) COMMENT '',
794         `type` varchar(64) COMMENT 'Type of the activity',
795         `object-type` varchar(64) COMMENT 'Type of the object activity',
796         `object-object-type` varchar(64) COMMENT 'Type of the object\'s object activity',
797         `received` datetime COMMENT 'Receiving date',
798         `activity` mediumtext COMMENT 'The JSON activity',
799         `signer` varchar(255) COMMENT '',
800         `push` boolean COMMENT 'Is the entry pushed or have pulled it?',
801         `trust` boolean COMMENT 'Do we trust this entry?',
802         `wid` int unsigned COMMENT 'Workerqueue id',
803          PRIMARY KEY(`id`),
804          UNIQUE INDEX `activity-id` (`activity-id`),
805          INDEX `object-id` (`object-id`),
806          INDEX `received` (`received`),
807          INDEX `wid` (`wid`),
808         FOREIGN KEY (`wid`) REFERENCES `workerqueue` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
809 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Incoming activity';
810
811 --
812 -- TABLE inbox-entry-receiver
813 --
814 CREATE TABLE IF NOT EXISTS `inbox-entry-receiver` (
815         `queue-id` int unsigned NOT NULL COMMENT '',
816         `uid` mediumint unsigned NOT NULL COMMENT 'User id',
817          PRIMARY KEY(`queue-id`,`uid`),
818          INDEX `uid` (`uid`),
819         FOREIGN KEY (`queue-id`) REFERENCES `inbox-entry` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
820         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
821 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Receiver for the incoming activity';
822
823 --
824 -- TABLE inbox-status
825 --
826 CREATE TABLE IF NOT EXISTS `inbox-status` (
827         `url` varbinary(383) NOT NULL COMMENT 'URL of the inbox',
828         `uri-id` int unsigned COMMENT 'Item-uri id of inbox url',
829         `gsid` int unsigned COMMENT 'ID of the related server',
830         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation date of this entry',
831         `success` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last successful delivery',
832         `failure` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of the last failed delivery',
833         `previous` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Previous delivery date',
834         `archive` boolean NOT NULL DEFAULT '0' COMMENT 'Is the inbox archived?',
835         `shared` boolean NOT NULL DEFAULT '0' COMMENT 'Is it a shared inbox?',
836          PRIMARY KEY(`url`),
837          INDEX `uri-id` (`uri-id`),
838          INDEX `gsid` (`gsid`),
839         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
840         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
841 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Status of ActivityPub inboxes';
842
843 --
844 -- TABLE intro
845 --
846 CREATE TABLE IF NOT EXISTS `intro` (
847         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
848         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
849         `fid` int unsigned COMMENT 'deprecated',
850         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
851         `suggest-cid` int unsigned COMMENT 'Suggested contact',
852         `knowyou` boolean NOT NULL DEFAULT '0' COMMENT '',
853         `duplex` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
854         `note` text COMMENT '',
855         `hash` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
856         `datetime` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
857         `blocked` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
858         `ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
859          PRIMARY KEY(`id`),
860          INDEX `contact-id` (`contact-id`),
861          INDEX `suggest-cid` (`suggest-cid`),
862          INDEX `uid` (`uid`),
863         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
864         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
865         FOREIGN KEY (`suggest-cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
866 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
867
868 --
869 -- TABLE key-value
870 --
871 CREATE TABLE IF NOT EXISTS `key-value` (
872         `k` varbinary(50) NOT NULL COMMENT '',
873         `v` mediumtext COMMENT '',
874         `updated_at` int unsigned NOT NULL COMMENT 'timestamp of the last update',
875          PRIMARY KEY(`k`)
876 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='A key value storage';
877
878 --
879 -- TABLE locks
880 --
881 CREATE TABLE IF NOT EXISTS `locks` (
882         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
883         `name` varchar(128) NOT NULL DEFAULT '' COMMENT '',
884         `locked` boolean NOT NULL DEFAULT '0' COMMENT '',
885         `pid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Process ID',
886         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
887          PRIMARY KEY(`id`),
888          INDEX `name_expires` (`name`,`expires`)
889 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
890
891 --
892 -- TABLE mail
893 --
894 CREATE TABLE IF NOT EXISTS `mail` (
895         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
896         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
897         `guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
898         `from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
899         `from-photo` varbinary(383) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
900         `from-url` varbinary(383) NOT NULL DEFAULT '' COMMENT 'profile link of the sender',
901         `contact-id` varbinary(255) COMMENT 'contact.id',
902         `author-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the author of the mail',
903         `convid` int unsigned COMMENT 'conv.id',
904         `title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
905         `body` mediumtext COMMENT '',
906         `seen` boolean NOT NULL DEFAULT '0' COMMENT 'if message visited it is 1',
907         `reply` boolean NOT NULL DEFAULT '0' COMMENT '',
908         `replied` boolean NOT NULL DEFAULT '0' COMMENT '',
909         `unknown` boolean NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1',
910         `uri` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
911         `uri-id` int unsigned COMMENT 'Item-uri id of the related mail',
912         `parent-uri` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
913         `parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related mail',
914         `thr-parent` varbinary(383) COMMENT '',
915         `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
916         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message',
917          PRIMARY KEY(`id`),
918          INDEX `uid_seen` (`uid`,`seen`),
919          INDEX `convid` (`convid`),
920          INDEX `uri` (`uri`(64)),
921          INDEX `parent-uri` (`parent-uri`(64)),
922          INDEX `contactid` (`contact-id`(32)),
923          INDEX `author-id` (`author-id`),
924          INDEX `uri-id` (`uri-id`),
925          INDEX `parent-uri-id` (`parent-uri-id`),
926          INDEX `thr-parent-id` (`thr-parent-id`),
927         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
928         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
929         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
930         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
931         FOREIGN KEY (`thr-parent-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
932 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages';
933
934 --
935 -- TABLE mailacct
936 --
937 CREATE TABLE IF NOT EXISTS `mailacct` (
938         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
939         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
940         `server` varchar(255) NOT NULL DEFAULT '' COMMENT '',
941         `port` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
942         `ssltype` varchar(16) NOT NULL DEFAULT '' COMMENT '',
943         `mailbox` varchar(255) NOT NULL DEFAULT '' COMMENT '',
944         `user` varchar(255) NOT NULL DEFAULT '' COMMENT '',
945         `pass` text COMMENT '',
946         `reply_to` varchar(255) NOT NULL DEFAULT '' COMMENT '',
947         `action` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
948         `movetofolder` varchar(255) NOT NULL DEFAULT '' COMMENT '',
949         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
950         `last_check` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
951          PRIMARY KEY(`id`),
952          INDEX `uid` (`uid`),
953         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
954 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Mail account data for fetching mails';
955
956 --
957 -- TABLE manage
958 --
959 CREATE TABLE IF NOT EXISTS `manage` (
960         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
961         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
962         `mid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
963          PRIMARY KEY(`id`),
964          UNIQUE INDEX `uid_mid` (`uid`,`mid`),
965          INDEX `mid` (`mid`),
966         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
967         FOREIGN KEY (`mid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
968 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='table of accounts that can manage each other';
969
970 --
971 -- TABLE notification
972 --
973 CREATE TABLE IF NOT EXISTS `notification` (
974         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
975         `uid` mediumint unsigned COMMENT 'Owner User id',
976         `vid` smallint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
977         `type` smallint unsigned COMMENT '',
978         `actor-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the actor that caused the notification',
979         `target-uri-id` int unsigned COMMENT 'Item-uri id of the related post',
980         `parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related post',
981         `created` datetime COMMENT '',
982         `seen` boolean DEFAULT '0' COMMENT 'Seen on the desktop',
983         `dismissed` boolean DEFAULT '0' COMMENT 'Dismissed via the API',
984          PRIMARY KEY(`id`),
985          UNIQUE INDEX `uid_vid_type_actor-id_target-uri-id` (`uid`,`vid`,`type`,`actor-id`,`target-uri-id`),
986          INDEX `vid` (`vid`),
987          INDEX `actor-id` (`actor-id`),
988          INDEX `target-uri-id` (`target-uri-id`),
989          INDEX `parent-uri-id` (`parent-uri-id`),
990          INDEX `seen_uid` (`seen`,`uid`),
991          INDEX `uid_type_parent-uri-id_actor-id` (`uid`,`type`,`parent-uri-id`,`actor-id`),
992         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
993         FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
994         FOREIGN KEY (`actor-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
995         FOREIGN KEY (`target-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
996         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
997 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='notifications';
998
999 --
1000 -- TABLE notify
1001 --
1002 CREATE TABLE IF NOT EXISTS `notify` (
1003         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1004         `type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
1005         `name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1006         `url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
1007         `photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
1008         `date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1009         `msg` mediumtext COMMENT '',
1010         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
1011         `link` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
1012         `iid` int unsigned COMMENT '',
1013         `parent` int unsigned COMMENT '',
1014         `uri-id` int unsigned COMMENT 'Item-uri id of the related post',
1015         `parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related post',
1016         `seen` boolean NOT NULL DEFAULT '0' COMMENT '',
1017         `verb` varchar(100) NOT NULL DEFAULT '' COMMENT '',
1018         `otype` varchar(10) NOT NULL DEFAULT '' COMMENT '',
1019         `name_cache` tinytext COMMENT 'Cached bbcode parsing of name',
1020         `msg_cache` mediumtext COMMENT 'Cached bbcode parsing of msg',
1021          PRIMARY KEY(`id`),
1022          INDEX `seen_uid_date` (`seen`,`uid`,`date`),
1023          INDEX `uid_date` (`uid`,`date`),
1024          INDEX `uid_type_link` (`uid`,`type`,`link`(190)),
1025          INDEX `uri-id` (`uri-id`),
1026          INDEX `parent-uri-id` (`parent-uri-id`),
1027         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1028         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1029         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1030 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='[Deprecated] User notifications';
1031
1032 --
1033 -- TABLE notify-threads
1034 --
1035 CREATE TABLE IF NOT EXISTS `notify-threads` (
1036         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1037         `notify-id` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1038         `master-parent-item` int unsigned COMMENT 'Deprecated',
1039         `master-parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related post',
1040         `parent-item` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1041         `receiver-uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1042          PRIMARY KEY(`id`),
1043          INDEX `master-parent-uri-id` (`master-parent-uri-id`),
1044          INDEX `receiver-uid` (`receiver-uid`),
1045          INDEX `notify-id` (`notify-id`),
1046         FOREIGN KEY (`notify-id`) REFERENCES `notify` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1047         FOREIGN KEY (`master-parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1048         FOREIGN KEY (`receiver-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1049 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
1050
1051 --
1052 -- TABLE oembed
1053 --
1054 CREATE TABLE IF NOT EXISTS `oembed` (
1055         `url` varbinary(383) NOT NULL COMMENT 'page url',
1056         `maxwidth` mediumint unsigned NOT NULL COMMENT 'Maximum width passed to Oembed',
1057         `content` mediumtext COMMENT 'OEmbed data of the page',
1058         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
1059          PRIMARY KEY(`url`,`maxwidth`),
1060          INDEX `created` (`created`)
1061 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='cache for OEmbed queries';
1062
1063 --
1064 -- TABLE openwebauth-token
1065 --
1066 CREATE TABLE IF NOT EXISTS `openwebauth-token` (
1067         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1068         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id - currently unused',
1069         `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'Verify type',
1070         `token` varchar(255) NOT NULL DEFAULT '' COMMENT 'A generated token',
1071         `meta` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1072         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
1073          PRIMARY KEY(`id`),
1074          INDEX `uid` (`uid`),
1075         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1076 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Store OpenWebAuth token to verify contacts';
1077
1078 --
1079 -- TABLE parsed_url
1080 --
1081 CREATE TABLE IF NOT EXISTS `parsed_url` (
1082         `url_hash` binary(64) NOT NULL COMMENT 'page url hash',
1083         `guessing` boolean NOT NULL DEFAULT '0' COMMENT 'is the \'guessing\' mode active?',
1084         `oembed` boolean NOT NULL DEFAULT '0' COMMENT 'is the data the result of oembed?',
1085         `url` text NOT NULL COMMENT 'page url',
1086         `content` mediumtext COMMENT 'page data',
1087         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of creation',
1088         `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of expiration',
1089          PRIMARY KEY(`url_hash`,`guessing`,`oembed`),
1090          INDEX `created` (`created`),
1091          INDEX `expires` (`expires`)
1092 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='cache for \'parse_url\' queries';
1093
1094 --
1095 -- TABLE pconfig
1096 --
1097 CREATE TABLE IF NOT EXISTS `pconfig` (
1098         `id` int unsigned NOT NULL auto_increment COMMENT 'Primary key',
1099         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1100         `cat` varchar(50) NOT NULL DEFAULT '' COMMENT 'Category',
1101         `k` varchar(100) NOT NULL DEFAULT '' COMMENT 'Key',
1102         `v` mediumtext COMMENT 'Value',
1103          PRIMARY KEY(`id`),
1104          UNIQUE INDEX `uid_cat_k` (`uid`,`cat`,`k`),
1105         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1106 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='personal (per user) configuration storage';
1107
1108 --
1109 -- TABLE photo
1110 --
1111 CREATE TABLE IF NOT EXISTS `photo` (
1112         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1113         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
1114         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
1115         `guid` char(16) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this photo',
1116         `resource-id` char(32) NOT NULL DEFAULT '' COMMENT '',
1117         `hash` char(32) COMMENT 'hash value of the photo',
1118         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation date',
1119         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edited date',
1120         `title` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1121         `desc` text COMMENT '',
1122         `album` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the album to which the photo belongs',
1123         `photo-type` tinyint unsigned COMMENT 'User avatar, user banner, contact avatar, contact banner or default',
1124         `filename` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1125         `type` varchar(30) NOT NULL DEFAULT 'image/jpeg',
1126         `height` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
1127         `width` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
1128         `datasize` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1129         `blurhash` varbinary(255) COMMENT 'BlurHash representation of the photo',
1130         `data` mediumblob NOT NULL COMMENT '',
1131         `scale` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1132         `profile` boolean NOT NULL DEFAULT '0' COMMENT '',
1133         `allow_cid` mediumtext COMMENT 'Access Control - list of allowed contact.id \'<19><78>\'',
1134         `allow_gid` mediumtext COMMENT 'Access Control - list of allowed circles',
1135         `deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
1136         `deny_gid` mediumtext COMMENT 'Access Control - list of denied circles',
1137         `accessible` boolean NOT NULL DEFAULT '0' COMMENT 'Make photo publicly accessible, ignoring permissions',
1138         `backend-class` tinytext COMMENT 'Storage backend class',
1139         `backend-ref` text COMMENT 'Storage backend data reference',
1140         `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1141          PRIMARY KEY(`id`),
1142          INDEX `contactid` (`contact-id`),
1143          INDEX `uid_contactid` (`uid`,`contact-id`),
1144          INDEX `uid_profile` (`uid`,`profile`),
1145          INDEX `uid_album_scale_created` (`uid`,`album`(32),`scale`,`created`),
1146          INDEX `uid_album_resource-id_created` (`uid`,`album`(32),`resource-id`,`created`),
1147          INDEX `resource-id` (`resource-id`),
1148          INDEX `uid_photo-type` (`uid`,`photo-type`),
1149         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1150         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1151 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='photo storage';
1152
1153 --
1154 -- TABLE post
1155 --
1156 CREATE TABLE IF NOT EXISTS `post` (
1157         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1158         `parent-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the parent uri',
1159         `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
1160         `external-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the external uri',
1161         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation timestamp.',
1162         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last edit (default is created)',
1163         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime',
1164         `gravity` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1165         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network from where the item comes from',
1166         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the owner of this item',
1167         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
1168         `causer-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1169         `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, image, article, ...)',
1170         `vid` smallint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
1171         `private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0=public, 1=private, 2=unlisted',
1172         `global` boolean NOT NULL DEFAULT '0' COMMENT '',
1173         `visible` boolean NOT NULL DEFAULT '0' COMMENT '',
1174         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'item has been marked for deletion',
1175          PRIMARY KEY(`uri-id`),
1176          INDEX `parent-uri-id` (`parent-uri-id`),
1177          INDEX `thr-parent-id` (`thr-parent-id`),
1178          INDEX `external-id` (`external-id`),
1179          INDEX `owner-id` (`owner-id`),
1180          INDEX `author-id` (`author-id`),
1181          INDEX `causer-id` (`causer-id`),
1182          INDEX `vid` (`vid`),
1183         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1184         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1185         FOREIGN KEY (`thr-parent-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1186         FOREIGN KEY (`external-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1187         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1188         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1189         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1190         FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1191 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Structure for all posts';
1192
1193 --
1194 -- TABLE post-activity
1195 --
1196 CREATE TABLE IF NOT EXISTS `post-activity` (
1197         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1198         `activity` mediumtext COMMENT 'Original activity',
1199         `received` datetime COMMENT '',
1200          PRIMARY KEY(`uri-id`),
1201         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1202 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Original remote activity';
1203
1204 --
1205 -- TABLE post-category
1206 --
1207 CREATE TABLE IF NOT EXISTS `post-category` (
1208         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1209         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1210         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1211         `tid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1212          PRIMARY KEY(`uri-id`,`uid`,`type`,`tid`),
1213          INDEX `tid` (`tid`),
1214          INDEX `uid_uri-id` (`uid`,`uri-id`),
1215         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1216         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1217         FOREIGN KEY (`tid`) REFERENCES `tag` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1218 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='post relation to categories';
1219
1220 --
1221 -- TABLE post-collection
1222 --
1223 CREATE TABLE IF NOT EXISTS `post-collection` (
1224         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1225         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0 - Featured',
1226         `author-id` int unsigned COMMENT 'Author of the featured post',
1227          PRIMARY KEY(`uri-id`,`type`),
1228          INDEX `type` (`type`),
1229          INDEX `author-id` (`author-id`),
1230         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1231         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1232 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Collection of posts';
1233
1234 --
1235 -- TABLE post-content
1236 --
1237 CREATE TABLE IF NOT EXISTS `post-content` (
1238         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1239         `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'item title',
1240         `content-warning` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1241         `body` mediumtext COMMENT 'item body content',
1242         `raw-body` mediumtext COMMENT 'Body without embedded media links',
1243         `quote-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the quoted uri',
1244         `location` varchar(255) NOT NULL DEFAULT '' COMMENT 'text location where this item originated',
1245         `coord` varchar(255) NOT NULL DEFAULT '' COMMENT 'longitude/latitude pair representing location where this item originated',
1246         `language` text COMMENT 'Language information about this post',
1247         `app` varchar(255) NOT NULL DEFAULT '' COMMENT 'application which generated this item',
1248         `rendered-hash` varchar(32) NOT NULL DEFAULT '' COMMENT '',
1249         `rendered-html` mediumtext COMMENT 'item.body converted to html',
1250         `object-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams object type',
1251         `object` text COMMENT 'JSON encoded object structure unless it is an implied object (normal post)',
1252         `target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
1253         `target` text COMMENT 'JSON encoded target structure if used',
1254         `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',
1255         `plink` varbinary(383) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
1256          PRIMARY KEY(`uri-id`),
1257          INDEX `plink` (`plink`(191)),
1258          INDEX `resource-id` (`resource-id`),
1259          FULLTEXT INDEX `title-content-warning-body` (`title`,`content-warning`,`body`),
1260          INDEX `quote-uri-id` (`quote-uri-id`),
1261         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1262         FOREIGN KEY (`quote-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1263 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Content for all posts';
1264
1265 --
1266 -- TABLE post-delivery
1267 --
1268 CREATE TABLE IF NOT EXISTS `post-delivery` (
1269         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1270         `inbox-id` int unsigned NOT NULL COMMENT 'Item-uri id of inbox url',
1271         `uid` mediumint unsigned COMMENT 'Delivering user',
1272         `created` datetime DEFAULT '0001-01-01 00:00:00' COMMENT '',
1273         `command` varbinary(32) COMMENT '',
1274         `failed` tinyint DEFAULT 0 COMMENT 'Number of times the delivery has failed',
1275         `receivers` mediumtext COMMENT 'JSON encoded array with the receiving contacts',
1276          PRIMARY KEY(`uri-id`,`inbox-id`),
1277          INDEX `inbox-id_created` (`inbox-id`,`created`),
1278          INDEX `uid` (`uid`),
1279         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1280         FOREIGN KEY (`inbox-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1281         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1282 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for posts for the batch processing';
1283
1284 --
1285 -- TABLE post-delivery-data
1286 --
1287 CREATE TABLE IF NOT EXISTS `post-delivery-data` (
1288         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1289         `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',
1290         `inform` mediumtext COMMENT 'Additional receivers of the linked item',
1291         `queue_count` mediumint NOT NULL DEFAULT 0 COMMENT 'Initial number of delivery recipients, used as item.delivery_queue_count',
1292         `queue_done` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries, used as item.delivery_queue_done',
1293         `queue_failed` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of unsuccessful deliveries, used as item.delivery_queue_failed',
1294         `activitypub` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via ActivityPub',
1295         `dfrn` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via DFRN',
1296         `legacy_dfrn` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via legacy DFRN',
1297         `diaspora` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via Diaspora',
1298         `ostatus` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries via OStatus',
1299          PRIMARY KEY(`uri-id`),
1300         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1301 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for items';
1302
1303 --
1304 -- TABLE post-history
1305 --
1306 CREATE TABLE IF NOT EXISTS `post-history` (
1307         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1308         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of edit',
1309         `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'item title',
1310         `content-warning` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1311         `body` mediumtext COMMENT 'item body content',
1312         `raw-body` mediumtext COMMENT 'Body without embedded media links',
1313         `location` varchar(255) NOT NULL DEFAULT '' COMMENT 'text location where this item originated',
1314         `coord` varchar(255) NOT NULL DEFAULT '' COMMENT 'longitude/latitude pair representing location where this item originated',
1315         `language` text COMMENT 'Language information about this post',
1316         `app` varchar(255) NOT NULL DEFAULT '' COMMENT 'application which generated this item',
1317         `rendered-hash` varchar(32) NOT NULL DEFAULT '' COMMENT '',
1318         `rendered-html` mediumtext COMMENT 'item.body converted to html',
1319         `object-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams object type',
1320         `object` text COMMENT 'JSON encoded object structure unless it is an implied object (normal post)',
1321         `target-type` varchar(100) NOT NULL DEFAULT '' COMMENT 'ActivityStreams target type if applicable (URI)',
1322         `target` text COMMENT 'JSON encoded target structure if used',
1323         `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',
1324         `plink` varbinary(383) NOT NULL DEFAULT '' COMMENT 'permalink or URL to a displayable copy of the message at its source',
1325          PRIMARY KEY(`uri-id`,`edited`),
1326         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1327 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Post history';
1328
1329 --
1330 -- TABLE post-link
1331 --
1332 CREATE TABLE IF NOT EXISTS `post-link` (
1333         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1334         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1335         `url` varbinary(511) NOT NULL COMMENT 'External URL',
1336         `mimetype` varchar(60) COMMENT '',
1337         `height` smallint unsigned COMMENT 'Height of the media',
1338         `width` smallint unsigned COMMENT 'Width of the media',
1339         `blurhash` varbinary(255) COMMENT 'BlurHash representation of the link',
1340          PRIMARY KEY(`id`),
1341          UNIQUE INDEX `uri-id-url` (`uri-id`,`url`),
1342         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1343 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Post related external links';
1344
1345 --
1346 -- TABLE post-media
1347 --
1348 CREATE TABLE IF NOT EXISTS `post-media` (
1349         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1350         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1351         `url` varbinary(1024) NOT NULL COMMENT 'Media URL',
1352         `media-uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the activities uri-id',
1353         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Media type',
1354         `mimetype` varchar(60) COMMENT '',
1355         `height` smallint unsigned COMMENT 'Height of the media',
1356         `width` smallint unsigned COMMENT 'Width of the media',
1357         `size` bigint unsigned COMMENT 'Media size',
1358         `blurhash` varbinary(255) COMMENT 'BlurHash representation of the image',
1359         `preview` varbinary(512) COMMENT 'Preview URL',
1360         `preview-height` smallint unsigned COMMENT 'Height of the preview picture',
1361         `preview-width` smallint unsigned COMMENT 'Width of the preview picture',
1362         `description` text COMMENT '',
1363         `name` varchar(255) COMMENT 'Name of the media',
1364         `author-url` varbinary(383) COMMENT 'URL of the author of the media',
1365         `author-name` varchar(255) COMMENT 'Name of the author of the media',
1366         `author-image` varbinary(383) COMMENT 'Image of the author of the media',
1367         `publisher-url` varbinary(383) COMMENT 'URL of the publisher of the media',
1368         `publisher-name` varchar(255) COMMENT 'Name of the publisher of the media',
1369         `publisher-image` varbinary(383) COMMENT 'Image of the publisher of the media',
1370          PRIMARY KEY(`id`),
1371          UNIQUE INDEX `uri-id-url` (`uri-id`,`url`(512)),
1372          INDEX `uri-id-id` (`uri-id`,`id`),
1373          INDEX `media-uri-id` (`media-uri-id`),
1374         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1375         FOREIGN KEY (`media-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1376 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Attached media';
1377
1378 --
1379 -- TABLE post-question
1380 --
1381 CREATE TABLE IF NOT EXISTS `post-question` (
1382         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1383         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1384         `multiple` boolean NOT NULL DEFAULT '0' COMMENT 'Multiple choice',
1385         `voters` int unsigned COMMENT 'Number of voters for this question',
1386         `end-time` datetime DEFAULT '0001-01-01 00:00:00' COMMENT 'Question end time',
1387          PRIMARY KEY(`id`),
1388          UNIQUE INDEX `uri-id` (`uri-id`),
1389         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1390 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Question';
1391
1392 --
1393 -- TABLE post-question-option
1394 --
1395 CREATE TABLE IF NOT EXISTS `post-question-option` (
1396         `id` int unsigned NOT NULL COMMENT 'Id of the question',
1397         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1398         `name` varchar(255) COMMENT 'Name of the option',
1399         `replies` int unsigned COMMENT 'Number of replies for this question option',
1400          PRIMARY KEY(`uri-id`,`id`),
1401         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1402 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Question option';
1403
1404 --
1405 -- TABLE post-tag
1406 --
1407 CREATE TABLE IF NOT EXISTS `post-tag` (
1408         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1409         `type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1410         `tid` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1411         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Contact id of the mentioned public contact',
1412          PRIMARY KEY(`uri-id`,`type`,`tid`,`cid`),
1413          INDEX `tid` (`tid`),
1414          INDEX `cid` (`cid`),
1415         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1416         FOREIGN KEY (`tid`) REFERENCES `tag` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1417         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1418 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='post relation to tags';
1419
1420 --
1421 -- TABLE post-thread
1422 --
1423 CREATE TABLE IF NOT EXISTS `post-thread` (
1424         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1425         `conversation-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the conversation uri',
1426         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item owner',
1427         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item author',
1428         `causer-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1429         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
1430         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1431         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1432         `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',
1433         `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1434          PRIMARY KEY(`uri-id`),
1435          INDEX `conversation-id` (`conversation-id`),
1436          INDEX `owner-id` (`owner-id`),
1437          INDEX `author-id` (`author-id`),
1438          INDEX `causer-id` (`causer-id`),
1439          INDEX `received` (`received`),
1440          INDEX `commented` (`commented`),
1441         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1442         FOREIGN KEY (`conversation-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1443         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1444         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1445         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1446 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Thread related data';
1447
1448 --
1449 -- TABLE post-user
1450 --
1451 CREATE TABLE IF NOT EXISTS `post-user` (
1452         `id` int unsigned NOT NULL auto_increment,
1453         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1454         `parent-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the parent uri',
1455         `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri',
1456         `external-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the external uri',
1457         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Creation timestamp.',
1458         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last edit (default is created)',
1459         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime',
1460         `gravity` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '',
1461         `network` char(4) NOT NULL DEFAULT '' COMMENT 'Network from where the item comes from',
1462         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the owner of this item',
1463         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
1464         `causer-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1465         `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, image, article, ...)',
1466         `post-reason` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Reason why the post arrived at the user',
1467         `vid` smallint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
1468         `private` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '0=public, 1=private, 2=unlisted',
1469         `global` boolean NOT NULL DEFAULT '0' COMMENT '',
1470         `visible` boolean NOT NULL DEFAULT '0' COMMENT '',
1471         `deleted` boolean NOT NULL DEFAULT '0' COMMENT 'item has been marked for deletion',
1472         `uid` mediumint unsigned NOT NULL COMMENT 'Owner id which owns this copy of the item',
1473         `protocol` tinyint unsigned COMMENT 'Protocol used to deliver the item for this user',
1474         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
1475         `event-id` int unsigned COMMENT 'Used to link to the event.id',
1476         `unseen` boolean NOT NULL DEFAULT '1' COMMENT 'post has not been seen',
1477         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide the post from the user',
1478         `notification-type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
1479         `wall` boolean NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid',
1480         `origin` boolean NOT NULL DEFAULT '0' COMMENT 'item originated at this site',
1481         `psid` int unsigned COMMENT 'ID of the permission set of this post',
1482          PRIMARY KEY(`id`),
1483          UNIQUE INDEX `uid_uri-id` (`uid`,`uri-id`),
1484          INDEX `uri-id` (`uri-id`),
1485          INDEX `parent-uri-id` (`parent-uri-id`),
1486          INDEX `thr-parent-id` (`thr-parent-id`),
1487          INDEX `external-id` (`external-id`),
1488          INDEX `owner-id` (`owner-id`),
1489          INDEX `author-id` (`author-id`),
1490          INDEX `causer-id` (`causer-id`),
1491          INDEX `vid` (`vid`),
1492          INDEX `contact-id` (`contact-id`),
1493          INDEX `event-id` (`event-id`),
1494          INDEX `psid` (`psid`),
1495          INDEX `author-id_uid` (`author-id`,`uid`),
1496          INDEX `author-id_received` (`author-id`,`received`),
1497          INDEX `parent-uri-id_uid` (`parent-uri-id`,`uid`),
1498          INDEX `uid_wall_received` (`uid`,`wall`,`received`),
1499          INDEX `uid_contactid` (`uid`,`contact-id`),
1500          INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
1501          INDEX `uid_unseen` (`uid`,`unseen`),
1502          INDEX `uid_hidden_uri-id` (`uid`,`hidden`,`uri-id`),
1503         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1504         FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1505         FOREIGN KEY (`thr-parent-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1506         FOREIGN KEY (`external-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1507         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1508         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1509         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1510         FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1511         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1512         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1513         FOREIGN KEY (`event-id`) REFERENCES `event` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1514         FOREIGN KEY (`psid`) REFERENCES `permissionset` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1515 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific post data';
1516
1517 --
1518 -- TABLE post-thread-user
1519 --
1520 CREATE TABLE IF NOT EXISTS `post-thread-user` (
1521         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1522         `conversation-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the conversation uri',
1523         `owner-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item owner',
1524         `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Item author',
1525         `causer-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
1526         `network` char(4) NOT NULL DEFAULT '' COMMENT '',
1527         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1528         `received` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1529         `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',
1530         `commented` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1531         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner id which owns this copy of the item',
1532         `pinned` boolean NOT NULL DEFAULT '0' COMMENT 'deprecated',
1533         `starred` boolean NOT NULL DEFAULT '0' COMMENT '',
1534         `ignored` boolean NOT NULL DEFAULT '0' COMMENT 'Ignore updates for this thread',
1535         `wall` boolean NOT NULL DEFAULT '0' COMMENT 'This item was posted to the wall of uid',
1536         `mention` boolean NOT NULL DEFAULT '0' COMMENT '',
1537         `pubmail` boolean NOT NULL DEFAULT '0' COMMENT '',
1538         `forum_mode` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Deprecated',
1539         `contact-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'contact.id',
1540         `unseen` boolean NOT NULL DEFAULT '1' COMMENT 'post has not been seen',
1541         `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'Marker to hide the post from the user',
1542         `origin` boolean NOT NULL DEFAULT '0' COMMENT 'item originated at this site',
1543         `psid` int unsigned COMMENT 'ID of the permission set of this post',
1544         `post-user-id` int unsigned COMMENT 'Id of the post-user table',
1545          PRIMARY KEY(`uid`,`uri-id`),
1546          INDEX `uri-id` (`uri-id`),
1547          INDEX `conversation-id` (`conversation-id`),
1548          INDEX `owner-id` (`owner-id`),
1549          INDEX `author-id` (`author-id`),
1550          INDEX `causer-id` (`causer-id`),
1551          INDEX `uid` (`uid`),
1552          INDEX `contact-id` (`contact-id`),
1553          INDEX `psid` (`psid`),
1554          INDEX `post-user-id` (`post-user-id`),
1555          INDEX `commented` (`commented`),
1556          INDEX `uid_received` (`uid`,`received`),
1557          INDEX `uid_wall_received` (`uid`,`wall`,`received`),
1558          INDEX `uid_commented` (`uid`,`commented`),
1559          INDEX `uid_starred` (`uid`,`starred`),
1560          INDEX `uid_mention` (`uid`,`mention`),
1561         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1562         FOREIGN KEY (`conversation-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1563         FOREIGN KEY (`owner-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1564         FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1565         FOREIGN KEY (`causer-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1566         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1567         FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1568         FOREIGN KEY (`psid`) REFERENCES `permissionset` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT,
1569         FOREIGN KEY (`post-user-id`) REFERENCES `post-user` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1570 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Thread related data per user';
1571
1572 --
1573 -- TABLE post-user-notification
1574 --
1575 CREATE TABLE IF NOT EXISTS `post-user-notification` (
1576         `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri',
1577         `uid` mediumint unsigned NOT NULL COMMENT 'Owner id which owns this copy of the item',
1578         `notification-type` smallint unsigned NOT NULL DEFAULT 0 COMMENT '',
1579          PRIMARY KEY(`uid`,`uri-id`),
1580          INDEX `uri-id` (`uri-id`),
1581         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1582         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1583 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User post notifications';
1584
1585 --
1586 -- TABLE process
1587 --
1588 CREATE TABLE IF NOT EXISTS `process` (
1589         `pid` int unsigned NOT NULL COMMENT 'The ID of the process',
1590         `hostname` varchar(255) NOT NULL COMMENT 'The name of the host the process is ran on',
1591         `command` varbinary(32) NOT NULL DEFAULT '' COMMENT '',
1592         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1593          PRIMARY KEY(`pid`,`hostname`),
1594          INDEX `command` (`command`)
1595 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Currently running system processes';
1596
1597 --
1598 -- TABLE profile
1599 --
1600 CREATE TABLE IF NOT EXISTS `profile` (
1601         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1602         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner User id',
1603         `profile-name` varchar(255) COMMENT 'Deprecated',
1604         `is-default` boolean COMMENT 'Deprecated',
1605         `hide-friends` boolean NOT NULL DEFAULT '0' COMMENT 'Hide friend list from viewers of this profile',
1606         `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Unused in favor of user.username',
1607         `pdesc` varchar(255) COMMENT 'Deprecated',
1608         `dob` varchar(32) NOT NULL DEFAULT '0000-00-00' COMMENT 'Day of birth',
1609         `address` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1610         `locality` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1611         `region` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1612         `postal-code` varchar(32) NOT NULL DEFAULT '' COMMENT '',
1613         `country-name` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1614         `hometown` varchar(255) COMMENT 'Deprecated',
1615         `gender` varchar(32) COMMENT 'Deprecated',
1616         `marital` varchar(255) COMMENT 'Deprecated',
1617         `with` text COMMENT 'Deprecated',
1618         `howlong` datetime COMMENT 'Deprecated',
1619         `sexual` varchar(255) COMMENT 'Deprecated',
1620         `politic` varchar(255) COMMENT 'Deprecated',
1621         `religion` varchar(255) COMMENT 'Deprecated',
1622         `pub_keywords` text COMMENT '',
1623         `prv_keywords` text COMMENT '',
1624         `likes` text COMMENT 'Deprecated',
1625         `dislikes` text COMMENT 'Deprecated',
1626         `about` text COMMENT 'Profile description',
1627         `summary` varchar(255) COMMENT 'Deprecated',
1628         `music` text COMMENT 'Deprecated',
1629         `book` text COMMENT 'Deprecated',
1630         `tv` text COMMENT 'Deprecated',
1631         `film` text COMMENT 'Deprecated',
1632         `interest` text COMMENT 'Deprecated',
1633         `romance` text COMMENT 'Deprecated',
1634         `work` text COMMENT 'Deprecated',
1635         `education` text COMMENT 'Deprecated',
1636         `contact` text COMMENT 'Deprecated',
1637         `homepage` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1638         `homepage_verified` boolean NOT NULL DEFAULT '0' COMMENT 'was the homepage verified by a rel-me link back to the profile',
1639         `xmpp` varchar(255) NOT NULL DEFAULT '' COMMENT 'XMPP address',
1640         `matrix` varchar(255) NOT NULL DEFAULT '' COMMENT 'Matrix address',
1641         `photo` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
1642         `thumb` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
1643         `publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish default profile in local directory',
1644         `net-publish` boolean NOT NULL DEFAULT '0' COMMENT 'publish profile in global directory',
1645          PRIMARY KEY(`id`),
1646          INDEX `uid_is-default` (`uid`,`is-default`),
1647          FULLTEXT INDEX `pub_keywords` (`pub_keywords`),
1648         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1649 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='user profiles data';
1650
1651 --
1652 -- TABLE profile_field
1653 --
1654 CREATE TABLE IF NOT EXISTS `profile_field` (
1655         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1656         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'Owner user id',
1657         `order` mediumint unsigned NOT NULL DEFAULT 1 COMMENT 'Field ordering per user',
1658         `psid` int unsigned COMMENT 'ID of the permission set of this profile field - 0 = public',
1659         `label` varchar(255) NOT NULL DEFAULT '' COMMENT 'Label of the field',
1660         `value` text COMMENT 'Value of the field',
1661         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time',
1662         `edited` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'last edit time',
1663          PRIMARY KEY(`id`),
1664          INDEX `uid` (`uid`),
1665          INDEX `order` (`order`),
1666          INDEX `psid` (`psid`),
1667         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1668         FOREIGN KEY (`psid`) REFERENCES `permissionset` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
1669 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Custom profile fields';
1670
1671 --
1672 -- TABLE push_subscriber
1673 --
1674 CREATE TABLE IF NOT EXISTS `push_subscriber` (
1675         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1676         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1677         `callback_url` varbinary(383) NOT NULL DEFAULT '' COMMENT '',
1678         `topic` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1679         `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1680         `push` tinyint NOT NULL DEFAULT 0 COMMENT 'Retrial counter',
1681         `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last successful trial',
1682         `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date',
1683         `renewed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last subscription renewal',
1684         `secret` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1685          PRIMARY KEY(`id`),
1686          INDEX `next_try` (`next_try`),
1687          INDEX `uid` (`uid`),
1688         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1689 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Used for OStatus: Contains feed subscribers';
1690
1691 --
1692 -- TABLE register
1693 --
1694 CREATE TABLE IF NOT EXISTS `register` (
1695         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1696         `hash` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
1697         `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1698         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1699         `password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1700         `language` varchar(16) NOT NULL DEFAULT '' COMMENT '',
1701         `note` text COMMENT '',
1702          PRIMARY KEY(`id`),
1703          INDEX `uid` (`uid`),
1704         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1705 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registrations requiring admin approval';
1706
1707 --
1708 -- TABLE report
1709 --
1710 CREATE TABLE IF NOT EXISTS `report` (
1711         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1712         `uid` mediumint unsigned COMMENT 'Reporting user',
1713         `reporter-id` int unsigned COMMENT 'Reporting contact',
1714         `cid` int unsigned NOT NULL COMMENT 'Reported contact',
1715         `gsid` int unsigned COMMENT 'Reported contact server',
1716         `comment` text COMMENT 'Report',
1717         `category-id` int unsigned NOT NULL DEFAULT 1 COMMENT 'Report category, one of Entity\Report::CATEGORY_*',
1718         `forward` boolean COMMENT 'Forward the report to the remote server',
1719         `public-remarks` text COMMENT 'Remarks shared with the reporter',
1720         `private-remarks` text COMMENT 'Remarks shared with the moderation team',
1721         `last-editor-uid` mediumint unsigned COMMENT 'Last editor user',
1722         `assigned-uid` mediumint unsigned COMMENT 'Assigned moderator user',
1723         `status` tinyint unsigned NOT NULL COMMENT 'Status of the report, one of Entity\Report::STATUS_*',
1724         `resolution` tinyint unsigned COMMENT 'Resolution of the report, one of Entity\Report::RESOLUTION_*',
1725         `created` datetime(6) NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '',
1726         `edited` datetime(6) COMMENT 'Last time the report has been edited',
1727          PRIMARY KEY(`id`),
1728          INDEX `uid` (`uid`),
1729          INDEX `cid` (`cid`),
1730          INDEX `reporter-id` (`reporter-id`),
1731          INDEX `gsid` (`gsid`),
1732          INDEX `last-editor-uid` (`last-editor-uid`),
1733          INDEX `assigned-uid` (`assigned-uid`),
1734          INDEX `status-resolution` (`status`,`resolution`),
1735          INDEX `created` (`created`),
1736          INDEX `edited` (`edited`),
1737         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1738         FOREIGN KEY (`reporter-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1739         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1740         FOREIGN KEY (`gsid`) REFERENCES `gserver` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1741         FOREIGN KEY (`last-editor-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1742         FOREIGN KEY (`assigned-uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1743 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
1744
1745 --
1746 -- TABLE report-post
1747 --
1748 CREATE TABLE IF NOT EXISTS `report-post` (
1749         `rid` int unsigned NOT NULL COMMENT 'Report id',
1750         `uri-id` int unsigned NOT NULL COMMENT 'Uri-id of the reported post',
1751         `status` tinyint unsigned COMMENT 'Status of the reported post',
1752          PRIMARY KEY(`rid`,`uri-id`),
1753          INDEX `uri-id` (`uri-id`),
1754         FOREIGN KEY (`rid`) REFERENCES `report` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1755         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1756 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Individual posts attached to a moderation report';
1757
1758 --
1759 -- TABLE report-rule
1760 --
1761 CREATE TABLE IF NOT EXISTS `report-rule` (
1762         `rid` int unsigned NOT NULL COMMENT 'Report id',
1763         `line-id` int unsigned NOT NULL COMMENT 'Terms of service rule line number, may become invalid after a TOS change.',
1764         `text` text NOT NULL COMMENT 'Terms of service rule text recorded at the time of the report',
1765          PRIMARY KEY(`rid`,`line-id`),
1766         FOREIGN KEY (`rid`) REFERENCES `report` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1767 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Terms of service rule lines relevant to a moderation report';
1768
1769 --
1770 -- TABLE search
1771 --
1772 CREATE TABLE IF NOT EXISTS `search` (
1773         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1774         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1775         `term` varchar(255) NOT NULL DEFAULT '' COMMENT '',
1776          PRIMARY KEY(`id`),
1777          INDEX `uid_term` (`uid`,`term`(64)),
1778          INDEX `term` (`term`(64)),
1779         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1780 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
1781
1782 --
1783 -- TABLE session
1784 --
1785 CREATE TABLE IF NOT EXISTS `session` (
1786         `id` bigint unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1787         `sid` varbinary(255) NOT NULL DEFAULT '' COMMENT '',
1788         `data` text COMMENT '',
1789         `expire` int unsigned NOT NULL DEFAULT 0 COMMENT '',
1790          PRIMARY KEY(`id`),
1791          INDEX `sid` (`sid`(64)),
1792          INDEX `expire` (`expire`)
1793 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='web session storage';
1794
1795 --
1796 -- TABLE storage
1797 --
1798 CREATE TABLE IF NOT EXISTS `storage` (
1799         `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented image data id',
1800         `data` longblob NOT NULL COMMENT 'file data',
1801          PRIMARY KEY(`id`)
1802 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Data stored by Database storage backend';
1803
1804 --
1805 -- TABLE subscription
1806 --
1807 CREATE TABLE IF NOT EXISTS `subscription` (
1808         `id` int unsigned NOT NULL auto_increment COMMENT 'Auto incremented image data id',
1809         `application-id` int unsigned NOT NULL COMMENT '',
1810         `uid` mediumint unsigned NOT NULL COMMENT 'Owner User id',
1811         `endpoint` varchar(511) COMMENT 'Endpoint URL',
1812         `pubkey` varchar(127) COMMENT 'User agent public key',
1813         `secret` varchar(32) COMMENT 'Auth secret',
1814         `follow` boolean COMMENT '',
1815         `favourite` boolean COMMENT '',
1816         `reblog` boolean COMMENT '',
1817         `mention` boolean COMMENT '',
1818         `poll` boolean COMMENT '',
1819         `follow_request` boolean COMMENT '',
1820         `status` boolean COMMENT '',
1821          PRIMARY KEY(`id`),
1822          UNIQUE INDEX `application-id_uid` (`application-id`,`uid`),
1823          INDEX `uid_application-id` (`uid`,`application-id`),
1824         FOREIGN KEY (`application-id`) REFERENCES `application` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1825         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE
1826 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Push Subscription for the API';
1827
1828 --
1829 -- TABLE userd
1830 --
1831 CREATE TABLE IF NOT EXISTS `userd` (
1832         `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
1833         `username` varchar(255) NOT NULL COMMENT '',
1834          PRIMARY KEY(`id`),
1835          INDEX `username` (`username`(32))
1836 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Deleted usernames';
1837
1838 --
1839 -- TABLE user-contact
1840 --
1841 CREATE TABLE IF NOT EXISTS `user-contact` (
1842         `cid` int unsigned NOT NULL DEFAULT 0 COMMENT 'Contact id of the linked public contact',
1843         `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
1844         `uri-id` int unsigned COMMENT 'Id of the item-uri table entry that contains the contact url',
1845         `blocked` boolean COMMENT 'Contact is completely blocked for this user',
1846         `ignored` boolean COMMENT 'Posts from this contact are ignored',
1847         `collapsed` boolean COMMENT 'Posts from this contact are collapsed',
1848         `hidden` boolean COMMENT 'This contact is hidden from the others',
1849         `is-blocked` boolean COMMENT 'User is blocked by this contact',
1850         `pending` boolean COMMENT '',
1851         `rel` tinyint unsigned COMMENT 'The kind of the relation between the user and the contact',
1852         `info` mediumtext COMMENT '',
1853         `notify_new_posts` boolean COMMENT '',
1854         `remote_self` tinyint unsigned COMMENT '0 => No mirroring, 1-2 => Mirror as own post, 3 => Mirror as reshare',
1855         `fetch_further_information` tinyint unsigned COMMENT '0 => None, 1 => Fetch information, 3 => Fetch keywords, 2 => Fetch both',
1856         `ffi_keyword_denylist` text COMMENT '',
1857         `subhub` boolean COMMENT '',
1858         `hub-verify` varbinary(383) COMMENT '',
1859         `protocol` char(4) COMMENT 'Protocol of the contact',
1860         `rating` tinyint COMMENT 'Automatically detected feed poll frequency',
1861         `priority` tinyint unsigned COMMENT 'Feed poll priority',
1862          PRIMARY KEY(`uid`,`cid`),
1863          INDEX `cid` (`cid`),
1864          UNIQUE INDEX `uri-id_uid` (`uri-id`,`uid`),
1865         FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
1866         FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
1867         FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
1868 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='User specific public contact data';
1869
1870 --
1871 -- TABLE arrived-activity
1872 --
1873 CREATE TABLE IF NOT EXISTS `arrived-activity` (
1874         `object-id` varbinary(383) NOT NULL COMMENT 'object id of the incoming activity',
1875         `received` datetime COMMENT 'Receiving date',
1876          PRIMARY KEY(`object-id`)
1877 ) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of arrived activities';
1878
1879 --
1880 -- TABLE fetched-activity
1881 --
1882 CREATE TABLE IF NOT EXISTS `fetched-activity` (
1883         `object-id` varbinary(383) NOT NULL COMMENT 'object id of fetched activity',
1884         `received` datetime COMMENT 'Receiving date',
1885          PRIMARY KEY(`object-id`)
1886 ) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Id of fetched activities';
1887
1888 --
1889 -- TABLE worker-ipc
1890 --
1891 CREATE TABLE IF NOT EXISTS `worker-ipc` (
1892         `key` int NOT NULL COMMENT '',
1893         `jobs` boolean COMMENT 'Flag for outstanding jobs',
1894          PRIMARY KEY(`key`)
1895 ) ENGINE=MEMORY DEFAULT COLLATE utf8mb4_general_ci COMMENT='Inter process communication between the frontend and the worker';
1896
1897 --
1898 -- VIEW application-view
1899 --
1900 DROP VIEW IF EXISTS `application-view`;
1901 CREATE VIEW `application-view` AS SELECT 
1902         `application`.`id` AS `id`,
1903         `application-token`.`uid` AS `uid`,
1904         `application`.`name` AS `name`,
1905         `application`.`redirect_uri` AS `redirect_uri`,
1906         `application`.`website` AS `website`,
1907         `application`.`client_id` AS `client_id`,
1908         `application`.`client_secret` AS `client_secret`,
1909         `application-token`.`code` AS `code`,
1910         `application-token`.`access_token` AS `access_token`,
1911         `application-token`.`created_at` AS `created_at`,
1912         `application-token`.`scopes` AS `scopes`,
1913         `application-token`.`read` AS `read`,
1914         `application-token`.`write` AS `write`,
1915         `application-token`.`follow` AS `follow`,
1916         `application-token`.`push` AS `push`
1917         FROM `application-token`
1918                         INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id`;
1919
1920 --
1921 -- VIEW circle-member-view
1922 --
1923 DROP VIEW IF EXISTS `circle-member-view`;
1924 CREATE VIEW `circle-member-view` AS SELECT 
1925         `group_member`.`id` AS `id`,
1926         `group`.`uid` AS `uid`,
1927         `group_member`.`contact-id` AS `contact-id`,
1928         `contact`.`uri-id` AS `contact-uri-id`,
1929         `contact`.`url` AS `contact-link`,
1930         `contact`.`addr` AS `contact-addr`,
1931         `contact`.`name` AS `contact-name`,
1932         `contact`.`nick` AS `contact-nick`,
1933         `contact`.`thumb` AS `contact-avatar`,
1934         `contact`.`network` AS `contact-network`,
1935         `contact`.`blocked` AS `contact-blocked`,
1936         `contact`.`hidden` AS `contact-hidden`,
1937         `contact`.`readonly` AS `contact-readonly`,
1938         `contact`.`archive` AS `contact-archive`,
1939         `contact`.`pending` AS `contact-pending`,
1940         `contact`.`self` AS `contact-self`,
1941         `contact`.`rel` AS `contact-rel`,
1942         `contact`.`contact-type` AS `contact-contact-type`,
1943         `group_member`.`gid` AS `circle-id`,
1944         `group`.`visible` AS `circle-visible`,
1945         `group`.`deleted` AS `circle-deleted`,
1946         `group`.`name` AS `circle-name`
1947         FROM `group_member`
1948                         INNER JOIN `contact` ON `group_member`.`contact-id` = `contact`.`id`
1949                         INNER JOIN `group` ON `group_member`.`gid` = `group`.`id`;
1950
1951 --
1952 -- VIEW post-user-view
1953 --
1954 DROP VIEW IF EXISTS `post-user-view`;
1955 CREATE VIEW `post-user-view` AS SELECT 
1956         `post-user`.`id` AS `id`,
1957         `post-user`.`id` AS `post-user-id`,
1958         `post-user`.`uid` AS `uid`,
1959         `post-thread-user`.`post-user-id` AS `parent`,
1960         `item-uri`.`uri` AS `uri`,
1961         `post-user`.`uri-id` AS `uri-id`,
1962         `parent-item-uri`.`uri` AS `parent-uri`,
1963         `post-user`.`parent-uri-id` AS `parent-uri-id`,
1964         `thr-parent-item-uri`.`uri` AS `thr-parent`,
1965         `post-user`.`thr-parent-id` AS `thr-parent-id`,
1966         `conversation-item-uri`.`uri` AS `conversation`,
1967         `post-thread-user`.`conversation-id` AS `conversation-id`,
1968         `quote-item-uri`.`uri` AS `quote-uri`,
1969         `post-content`.`quote-uri-id` AS `quote-uri-id`,
1970         `item-uri`.`guid` AS `guid`,
1971         `post-user`.`wall` AS `wall`,
1972         `post-user`.`gravity` AS `gravity`,
1973         `external-item-uri`.`uri` AS `extid`,
1974         `post-user`.`external-id` AS `external-id`,
1975         `post-user`.`created` AS `created`,
1976         `post-user`.`edited` AS `edited`,
1977         `post-thread-user`.`commented` AS `commented`,
1978         `post-user`.`received` AS `received`,
1979         `post-thread-user`.`changed` AS `changed`,
1980         `post-user`.`post-type` AS `post-type`,
1981         `post-user`.`post-reason` AS `post-reason`,
1982         `post-user`.`private` AS `private`,
1983         `post-thread-user`.`pubmail` AS `pubmail`,
1984         `post-user`.`visible` AS `visible`,
1985         `post-thread-user`.`starred` AS `starred`,
1986         `post-user`.`unseen` AS `unseen`,
1987         `post-user`.`deleted` AS `deleted`,
1988         `post-user`.`origin` AS `origin`,
1989         `post-thread-user`.`origin` AS `parent-origin`,
1990         `post-thread-user`.`mention` AS `mention`,
1991         `post-user`.`global` AS `global`,
1992         EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post-user`.`uri-id`) AS `featured`,
1993         `post-user`.`network` AS `network`,
1994         `post-user`.`protocol` AS `protocol`,
1995         `post-user`.`vid` AS `vid`,
1996         `post-user`.`psid` AS `psid`,
1997         IF (`post-user`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
1998         `post-content`.`title` AS `title`,
1999         `post-content`.`content-warning` AS `content-warning`,
2000         `post-content`.`raw-body` AS `raw-body`,
2001         IFNULL (`post-content`.`body`, '') AS `body`,
2002         `post-content`.`rendered-hash` AS `rendered-hash`,
2003         `post-content`.`rendered-html` AS `rendered-html`,
2004         `post-content`.`language` AS `language`,
2005         `post-content`.`plink` AS `plink`,
2006         `post-content`.`location` AS `location`,
2007         `post-content`.`coord` AS `coord`,
2008         `post-content`.`app` AS `app`,
2009         `post-content`.`object-type` AS `object-type`,
2010         `post-content`.`object` AS `object`,
2011         `post-content`.`target-type` AS `target-type`,
2012         `post-content`.`target` AS `target`,
2013         `post-content`.`resource-id` AS `resource-id`,
2014         `post-user`.`contact-id` AS `contact-id`,
2015         `contact`.`uri-id` AS `contact-uri-id`,
2016         `contact`.`url` AS `contact-link`,
2017         `contact`.`addr` AS `contact-addr`,
2018         `contact`.`name` AS `contact-name`,
2019         `contact`.`nick` AS `contact-nick`,
2020         `contact`.`thumb` AS `contact-avatar`,
2021         `contact`.`network` AS `contact-network`,
2022         `contact`.`blocked` AS `contact-blocked`,
2023         `contact`.`hidden` AS `contact-hidden`,
2024         `contact`.`readonly` AS `contact-readonly`,
2025         `contact`.`archive` AS `contact-archive`,
2026         `contact`.`pending` AS `contact-pending`,
2027         `contact`.`rel` AS `contact-rel`,
2028         `contact`.`uid` AS `contact-uid`,
2029         `contact`.`contact-type` AS `contact-contact-type`,
2030         IF (`post-user`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`) AS `writable`,
2031         `contact`.`self` AS `self`,
2032         `contact`.`id` AS `cid`,
2033         `contact`.`alias` AS `alias`,
2034         `contact`.`photo` AS `photo`,
2035         `contact`.`name-date` AS `name-date`,
2036         `contact`.`uri-date` AS `uri-date`,
2037         `contact`.`avatar-date` AS `avatar-date`,
2038         `contact`.`thumb` AS `thumb`,
2039         `post-user`.`author-id` AS `author-id`,
2040         `author`.`uri-id` AS `author-uri-id`,
2041         `author`.`url` AS `author-link`,
2042         `author`.`addr` AS `author-addr`,
2043         IF (`contact`.`url` = `author`.`url` AND `contact`.`name` != '', `contact`.`name`, `author`.`name`) AS `author-name`,
2044         `author`.`nick` AS `author-nick`,
2045         `author`.`alias` AS `author-alias`,
2046         IF (`contact`.`url` = `author`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `author`.`thumb`) AS `author-avatar`,
2047         `author`.`network` AS `author-network`,
2048         `author`.`blocked` AS `author-blocked`,
2049         `author`.`hidden` AS `author-hidden`,
2050         `author`.`updated` AS `author-updated`,
2051         `author`.`gsid` AS `author-gsid`,
2052         `author`.`baseurl` AS `author-baseurl`,
2053         `post-user`.`owner-id` AS `owner-id`,
2054         `owner`.`uri-id` AS `owner-uri-id`,
2055         `owner`.`url` AS `owner-link`,
2056         `owner`.`addr` AS `owner-addr`,
2057         IF (`contact`.`url` = `owner`.`url` AND `contact`.`name` != '', `contact`.`name`, `owner`.`name`) AS `owner-name`,
2058         `owner`.`nick` AS `owner-nick`,
2059         `owner`.`alias` AS `owner-alias`,
2060         IF (`contact`.`url` = `owner`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `owner`.`thumb`) AS `owner-avatar`,
2061         `owner`.`network` AS `owner-network`,
2062         `owner`.`blocked` AS `owner-blocked`,
2063         `owner`.`hidden` AS `owner-hidden`,
2064         `owner`.`updated` AS `owner-updated`,
2065         `owner`.`gsid` AS `owner-gsid`,
2066         `owner`.`contact-type` AS `owner-contact-type`,
2067         `post-user`.`causer-id` AS `causer-id`,
2068         `causer`.`uri-id` AS `causer-uri-id`,
2069         `causer`.`url` AS `causer-link`,
2070         `causer`.`addr` AS `causer-addr`,
2071         `causer`.`name` AS `causer-name`,
2072         `causer`.`nick` AS `causer-nick`,
2073         `causer`.`alias` AS `causer-alias`,
2074         `causer`.`thumb` AS `causer-avatar`,
2075         `causer`.`network` AS `causer-network`,
2076         `causer`.`blocked` AS `causer-blocked`,
2077         `causer`.`hidden` AS `causer-hidden`,
2078         `causer`.`gsid` AS `causer-gsid`,
2079         `causer`.`contact-type` AS `causer-contact-type`,
2080         `post-delivery-data`.`postopts` AS `postopts`,
2081         `post-delivery-data`.`inform` AS `inform`,
2082         `post-delivery-data`.`queue_count` AS `delivery_queue_count`,
2083         `post-delivery-data`.`queue_done` AS `delivery_queue_done`,
2084         `post-delivery-data`.`queue_failed` AS `delivery_queue_failed`,
2085         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`allow_cid`) AS `allow_cid`,
2086         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`allow_gid`) AS `allow_gid`,
2087         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`deny_cid`) AS `deny_cid`,
2088         IF (`post-user`.`psid` IS NULL, '', `permissionset`.`deny_gid`) AS `deny_gid`,
2089         `post-user`.`event-id` AS `event-id`,
2090         `event`.`created` AS `event-created`,
2091         `event`.`edited` AS `event-edited`,
2092         `event`.`start` AS `event-start`,
2093         `event`.`finish` AS `event-finish`,
2094         `event`.`summary` AS `event-summary`,
2095         `event`.`desc` AS `event-desc`,
2096         `event`.`location` AS `event-location`,
2097         `event`.`type` AS `event-type`,
2098         `event`.`nofinish` AS `event-nofinish`,
2099         `event`.`ignore` AS `event-ignore`,
2100         `post-question`.`id` AS `question-id`,
2101         `post-question`.`multiple` AS `question-multiple`,
2102         `post-question`.`voters` AS `question-voters`,
2103         `post-question`.`end-time` AS `question-end-time`,
2104         EXISTS(SELECT `uri-id` FROM `post-category` WHERE `post-category`.`uri-id` = `post-user`.`uri-id` AND `post-category`.`uid` = `post-user`.`uid`) AS `has-categories`,
2105         EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post-user`.`uri-id`) AS `has-media`,
2106         `diaspora-interaction`.`interaction` AS `signed_text`,
2107         `parent-item-uri`.`guid` AS `parent-guid`,
2108         `post-thread-user`.`network` AS `parent-network`,
2109         `post-thread-user`.`author-id` AS `parent-author-id`,
2110         `parent-post-author`.`url` AS `parent-author-link`,
2111         `parent-post-author`.`name` AS `parent-author-name`,
2112         `parent-post-author`.`nick` AS `parent-author-nick`,
2113         `parent-post-author`.`network` AS `parent-author-network`
2114         FROM `post-user`
2115                         INNER JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
2116                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-user`.`contact-id`
2117                         STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post-user`.`author-id`
2118                         STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-user`.`owner-id`
2119                         LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-user`.`causer-id`
2120                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `post-user`.`uri-id`
2121                         LEFT JOIN `item-uri` AS `thr-parent-item-uri` ON `thr-parent-item-uri`.`id` = `post-user`.`thr-parent-id`
2122                         LEFT JOIN `item-uri` AS `parent-item-uri` ON `parent-item-uri`.`id` = `post-user`.`parent-uri-id`
2123                         LEFT JOIN `item-uri` AS `conversation-item-uri` ON `conversation-item-uri`.`id` = `post-thread-user`.`conversation-id`
2124                         LEFT JOIN `item-uri` AS `external-item-uri` ON `external-item-uri`.`id` = `post-user`.`external-id`
2125                         LEFT JOIN `verb` ON `verb`.`id` = `post-user`.`vid`
2126                         LEFT JOIN `event` ON `event`.`id` = `post-user`.`event-id`
2127                         LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post-user`.`uri-id`
2128                         LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post-user`.`uri-id`
2129                         LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id`
2130                         LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `post-user`.`uri-id` AND `post-user`.`origin`
2131                         LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-user`.`uri-id`
2132                         LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-user`.`psid`
2133                         LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `post-thread-user`.`author-id`;
2134
2135 --
2136 -- VIEW post-thread-user-view
2137 --
2138 DROP VIEW IF EXISTS `post-thread-user-view`;
2139 CREATE VIEW `post-thread-user-view` AS SELECT 
2140         `post-user`.`id` AS `id`,
2141         `post-user`.`id` AS `post-user-id`,
2142         `post-thread-user`.`uid` AS `uid`,
2143         `post-thread-user`.`post-user-id` AS `parent`,
2144         `item-uri`.`uri` AS `uri`,
2145         `post-thread-user`.`uri-id` AS `uri-id`,
2146         `parent-item-uri`.`uri` AS `parent-uri`,
2147         `post-user`.`parent-uri-id` AS `parent-uri-id`,
2148         `thr-parent-item-uri`.`uri` AS `thr-parent`,
2149         `post-user`.`thr-parent-id` AS `thr-parent-id`,
2150         `conversation-item-uri`.`uri` AS `conversation`,
2151         `post-thread-user`.`conversation-id` AS `conversation-id`,
2152         `quote-item-uri`.`uri` AS `quote-uri`,
2153         `post-content`.`quote-uri-id` AS `quote-uri-id`,
2154         `item-uri`.`guid` AS `guid`,
2155         `post-thread-user`.`wall` AS `wall`,
2156         `post-user`.`gravity` AS `gravity`,
2157         `external-item-uri`.`uri` AS `extid`,
2158         `post-user`.`external-id` AS `external-id`,
2159         `post-thread-user`.`created` AS `created`,
2160         `post-user`.`edited` AS `edited`,
2161         `post-thread-user`.`commented` AS `commented`,
2162         `post-thread-user`.`received` AS `received`,
2163         `post-thread-user`.`changed` AS `changed`,
2164         `post-user`.`post-type` AS `post-type`,
2165         `post-user`.`post-reason` AS `post-reason`,
2166         `post-user`.`private` AS `private`,
2167         `post-thread-user`.`pubmail` AS `pubmail`,
2168         `post-thread-user`.`ignored` AS `ignored`,
2169         `post-user`.`visible` AS `visible`,
2170         `post-thread-user`.`starred` AS `starred`,
2171         `post-thread-user`.`unseen` AS `unseen`,
2172         `post-user`.`deleted` AS `deleted`,
2173         `post-thread-user`.`origin` AS `origin`,
2174         `post-thread-user`.`mention` AS `mention`,
2175         `post-user`.`global` AS `global`,
2176         EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post-thread-user`.`uri-id`) AS `featured`,
2177         `post-thread-user`.`network` AS `network`,
2178         `post-user`.`vid` AS `vid`,
2179         `post-thread-user`.`psid` AS `psid`,
2180         IF (`post-user`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
2181         `post-content`.`title` AS `title`,
2182         `post-content`.`content-warning` AS `content-warning`,
2183         `post-content`.`raw-body` AS `raw-body`,
2184         `post-content`.`body` AS `body`,
2185         `post-content`.`rendered-hash` AS `rendered-hash`,
2186         `post-content`.`rendered-html` AS `rendered-html`,
2187         `post-content`.`language` AS `language`,
2188         `post-content`.`plink` AS `plink`,
2189         `post-content`.`location` AS `location`,
2190         `post-content`.`coord` AS `coord`,
2191         `post-content`.`app` AS `app`,
2192         `post-content`.`object-type` AS `object-type`,
2193         `post-content`.`object` AS `object`,
2194         `post-content`.`target-type` AS `target-type`,
2195         `post-content`.`target` AS `target`,
2196         `post-content`.`resource-id` AS `resource-id`,
2197         `post-thread-user`.`contact-id` AS `contact-id`,
2198         `contact`.`uri-id` AS `contact-uri-id`,
2199         `contact`.`url` AS `contact-link`,
2200         `contact`.`addr` AS `contact-addr`,
2201         `contact`.`name` AS `contact-name`,
2202         `contact`.`nick` AS `contact-nick`,
2203         `contact`.`thumb` AS `contact-avatar`,
2204         `contact`.`network` AS `contact-network`,
2205         `contact`.`blocked` AS `contact-blocked`,
2206         `contact`.`hidden` AS `contact-hidden`,
2207         `contact`.`readonly` AS `contact-readonly`,
2208         `contact`.`archive` AS `contact-archive`,
2209         `contact`.`pending` AS `contact-pending`,
2210         `contact`.`rel` AS `contact-rel`,
2211         `contact`.`uid` AS `contact-uid`,
2212         `contact`.`gsid` AS `contact-gsid`,
2213         `contact`.`contact-type` AS `contact-contact-type`,
2214         IF (`post-user`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `contact`.`writable`) AS `writable`,
2215         `contact`.`self` AS `self`,
2216         `contact`.`id` AS `cid`,
2217         `contact`.`alias` AS `alias`,
2218         `contact`.`photo` AS `photo`,
2219         `contact`.`name-date` AS `name-date`,
2220         `contact`.`uri-date` AS `uri-date`,
2221         `contact`.`avatar-date` AS `avatar-date`,
2222         `contact`.`thumb` AS `thumb`,
2223         `post-thread-user`.`author-id` AS `author-id`,
2224         `author`.`uri-id` AS `author-uri-id`,
2225         `author`.`url` AS `author-link`,
2226         `author`.`addr` AS `author-addr`,
2227         IF (`contact`.`url` = `author`.`url` AND `contact`.`name` != '', `contact`.`name`, `author`.`name`) AS `author-name`,
2228         `author`.`nick` AS `author-nick`,
2229         `author`.`alias` AS `author-alias`,
2230         IF (`contact`.`url` = `author`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `author`.`thumb`) AS `author-avatar`,
2231         `author`.`network` AS `author-network`,
2232         `author`.`blocked` AS `author-blocked`,
2233         `author`.`hidden` AS `author-hidden`,
2234         `author`.`updated` AS `author-updated`,
2235         `author`.`gsid` AS `author-gsid`,
2236         `post-thread-user`.`owner-id` AS `owner-id`,
2237         `owner`.`uri-id` AS `owner-uri-id`,
2238         `owner`.`url` AS `owner-link`,
2239         `owner`.`addr` AS `owner-addr`,
2240         IF (`contact`.`url` = `owner`.`url` AND `contact`.`name` != '', `contact`.`name`, `owner`.`name`) AS `owner-name`,
2241         `owner`.`nick` AS `owner-nick`,
2242         `owner`.`alias` AS `owner-alias`,
2243         IF (`contact`.`url` = `owner`.`url` AND `contact`.`thumb` != '', `contact`.`thumb`, `owner`.`thumb`) AS `owner-avatar`,
2244         `owner`.`network` AS `owner-network`,
2245         `owner`.`blocked` AS `owner-blocked`,
2246         `owner`.`hidden` AS `owner-hidden`,
2247         `owner`.`updated` AS `owner-updated`,
2248         `owner`.`gsid` AS `owner-gsid`,
2249         `owner`.`contact-type` AS `owner-contact-type`,
2250         `post-thread-user`.`causer-id` AS `causer-id`,
2251         `causer`.`uri-id` AS `causer-uri-id`,
2252         `causer`.`url` AS `causer-link`,
2253         `causer`.`addr` AS `causer-addr`,
2254         `causer`.`name` AS `causer-name`,
2255         `causer`.`nick` AS `causer-nick`,
2256         `causer`.`alias` AS `causer-alias`,
2257         `causer`.`thumb` AS `causer-avatar`,
2258         `causer`.`network` AS `causer-network`,
2259         `causer`.`blocked` AS `causer-blocked`,
2260         `causer`.`hidden` AS `causer-hidden`,
2261         `causer`.`gsid` AS `causer-gsid`,
2262         `causer`.`contact-type` AS `causer-contact-type`,
2263         `post-delivery-data`.`postopts` AS `postopts`,
2264         `post-delivery-data`.`inform` AS `inform`,
2265         `post-delivery-data`.`queue_count` AS `delivery_queue_count`,
2266         `post-delivery-data`.`queue_done` AS `delivery_queue_done`,
2267         `post-delivery-data`.`queue_failed` AS `delivery_queue_failed`,
2268         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`allow_cid`) AS `allow_cid`,
2269         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`allow_gid`) AS `allow_gid`,
2270         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`deny_cid`) AS `deny_cid`,
2271         IF (`post-thread-user`.`psid` IS NULL, '', `permissionset`.`deny_gid`) AS `deny_gid`,
2272         `post-user`.`event-id` AS `event-id`,
2273         `event`.`created` AS `event-created`,
2274         `event`.`edited` AS `event-edited`,
2275         `event`.`start` AS `event-start`,
2276         `event`.`finish` AS `event-finish`,
2277         `event`.`summary` AS `event-summary`,
2278         `event`.`desc` AS `event-desc`,
2279         `event`.`location` AS `event-location`,
2280         `event`.`type` AS `event-type`,
2281         `event`.`nofinish` AS `event-nofinish`,
2282         `event`.`ignore` AS `event-ignore`,
2283         `post-question`.`id` AS `question-id`,
2284         `post-question`.`multiple` AS `question-multiple`,
2285         `post-question`.`voters` AS `question-voters`,
2286         `post-question`.`end-time` AS `question-end-time`,
2287         EXISTS(SELECT `uri-id` FROM `post-category` WHERE `post-category`.`uri-id` = `post-thread-user`.`uri-id` AND `post-category`.`uid` = `post-thread-user`.`uid`) AS `has-categories`,
2288         EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post-thread-user`.`uri-id`) AS `has-media`,
2289         `diaspora-interaction`.`interaction` AS `signed_text`,
2290         `parent-item-uri`.`guid` AS `parent-guid`,
2291         `post-thread-user`.`network` AS `parent-network`,
2292         `post-thread-user`.`author-id` AS `parent-author-id`,
2293         `author`.`url` AS `parent-author-link`,
2294         `author`.`name` AS `parent-author-name`,
2295         `author`.`nick` AS `parent-author-nick`,
2296         `author`.`network` AS `parent-author-network`
2297         FROM `post-thread-user`
2298                         INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id`
2299                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
2300                         STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post-thread-user`.`author-id`
2301                         STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-thread-user`.`owner-id`
2302                         LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-thread-user`.`causer-id`
2303                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `post-thread-user`.`uri-id`
2304                         LEFT JOIN `item-uri` AS `thr-parent-item-uri` ON `thr-parent-item-uri`.`id` = `post-user`.`thr-parent-id`
2305                         LEFT JOIN `item-uri` AS `parent-item-uri` ON `parent-item-uri`.`id` = `post-user`.`parent-uri-id`
2306                         LEFT JOIN `item-uri` AS `conversation-item-uri` ON `conversation-item-uri`.`id` = `post-thread-user`.`conversation-id`
2307                         LEFT JOIN `item-uri` AS `external-item-uri` ON `external-item-uri`.`id` = `post-user`.`external-id`
2308                         LEFT JOIN `verb` ON `verb`.`id` = `post-user`.`vid`
2309                         LEFT JOIN `event` ON `event`.`id` = `post-user`.`event-id`
2310                         LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post-thread-user`.`uri-id`
2311                         LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post-thread-user`.`uri-id`
2312                         LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id`
2313                         LEFT JOIN `post-delivery-data` ON `post-delivery-data`.`uri-id` = `post-thread-user`.`uri-id` AND `post-thread-user`.`origin`
2314                         LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-thread-user`.`uri-id`
2315                         LEFT JOIN `permissionset` ON `permissionset`.`id` = `post-thread-user`.`psid`;
2316
2317 --
2318 -- VIEW post-view
2319 --
2320 DROP VIEW IF EXISTS `post-view`;
2321 CREATE VIEW `post-view` AS SELECT 
2322         `item-uri`.`uri` AS `uri`,
2323         `post`.`uri-id` AS `uri-id`,
2324         `parent-item-uri`.`uri` AS `parent-uri`,
2325         `post`.`parent-uri-id` AS `parent-uri-id`,
2326         `thr-parent-item-uri`.`uri` AS `thr-parent`,
2327         `post`.`thr-parent-id` AS `thr-parent-id`,
2328         `conversation-item-uri`.`uri` AS `conversation`,
2329         `post-thread`.`conversation-id` AS `conversation-id`,
2330         `quote-item-uri`.`uri` AS `quote-uri`,
2331         `post-content`.`quote-uri-id` AS `quote-uri-id`,
2332         `item-uri`.`guid` AS `guid`,
2333         `post`.`gravity` AS `gravity`,
2334         `external-item-uri`.`uri` AS `extid`,
2335         `post`.`external-id` AS `external-id`,
2336         `post`.`created` AS `created`,
2337         `post`.`edited` AS `edited`,
2338         `post-thread`.`commented` AS `commented`,
2339         `post`.`received` AS `received`,
2340         `post-thread`.`changed` AS `changed`,
2341         `post`.`post-type` AS `post-type`,
2342         `post`.`private` AS `private`,
2343         `post`.`visible` AS `visible`,
2344         `post`.`deleted` AS `deleted`,
2345         `post`.`global` AS `global`,
2346         EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post`.`uri-id`) AS `featured`,
2347         `post`.`network` AS `network`,
2348         `post`.`vid` AS `vid`,
2349         IF (`post`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
2350         `post-content`.`title` AS `title`,
2351         `post-content`.`content-warning` AS `content-warning`,
2352         `post-content`.`raw-body` AS `raw-body`,
2353         `post-content`.`body` AS `body`,
2354         `post-content`.`rendered-hash` AS `rendered-hash`,
2355         `post-content`.`rendered-html` AS `rendered-html`,
2356         `post-content`.`language` AS `language`,
2357         `post-content`.`plink` AS `plink`,
2358         `post-content`.`location` AS `location`,
2359         `post-content`.`coord` AS `coord`,
2360         `post-content`.`app` AS `app`,
2361         `post-content`.`object-type` AS `object-type`,
2362         `post-content`.`object` AS `object`,
2363         `post-content`.`target-type` AS `target-type`,
2364         `post-content`.`target` AS `target`,
2365         `post-content`.`resource-id` AS `resource-id`,
2366         `post`.`author-id` AS `contact-id`,
2367         `author`.`uri-id` AS `contact-uri-id`,
2368         `author`.`url` AS `contact-link`,
2369         `author`.`addr` AS `contact-addr`,
2370         `author`.`name` AS `contact-name`,
2371         `author`.`nick` AS `contact-nick`,
2372         `author`.`thumb` AS `contact-avatar`,
2373         `author`.`network` AS `contact-network`,
2374         `author`.`blocked` AS `contact-blocked`,
2375         `author`.`hidden` AS `contact-hidden`,
2376         `author`.`readonly` AS `contact-readonly`,
2377         `author`.`archive` AS `contact-archive`,
2378         `author`.`pending` AS `contact-pending`,
2379         `author`.`rel` AS `contact-rel`,
2380         `author`.`uid` AS `contact-uid`,
2381         `author`.`contact-type` AS `contact-contact-type`,
2382         IF (`post`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `author`.`writable`) AS `writable`,
2383         false AS `self`,
2384         `author`.`id` AS `cid`,
2385         `author`.`alias` AS `alias`,
2386         `author`.`photo` AS `photo`,
2387         `author`.`name-date` AS `name-date`,
2388         `author`.`uri-date` AS `uri-date`,
2389         `author`.`avatar-date` AS `avatar-date`,
2390         `author`.`thumb` AS `thumb`,
2391         `post`.`author-id` AS `author-id`,
2392         `author`.`uri-id` AS `author-uri-id`,
2393         `author`.`url` AS `author-link`,
2394         `author`.`addr` AS `author-addr`,
2395         `author`.`name` AS `author-name`,
2396         `author`.`nick` AS `author-nick`,
2397         `author`.`alias` AS `author-alias`,
2398         `author`.`thumb` AS `author-avatar`,
2399         `author`.`network` AS `author-network`,
2400         `author`.`blocked` AS `author-blocked`,
2401         `author`.`hidden` AS `author-hidden`,
2402         `author`.`updated` AS `author-updated`,
2403         `author`.`gsid` AS `author-gsid`,
2404         `post`.`owner-id` AS `owner-id`,
2405         `owner`.`uri-id` AS `owner-uri-id`,
2406         `owner`.`url` AS `owner-link`,
2407         `owner`.`addr` AS `owner-addr`,
2408         `owner`.`name` AS `owner-name`,
2409         `owner`.`nick` AS `owner-nick`,
2410         `owner`.`alias` AS `owner-alias`,
2411         `owner`.`thumb` AS `owner-avatar`,
2412         `owner`.`network` AS `owner-network`,
2413         `owner`.`blocked` AS `owner-blocked`,
2414         `owner`.`hidden` AS `owner-hidden`,
2415         `owner`.`updated` AS `owner-updated`,
2416         `owner`.`contact-type` AS `owner-contact-type`,
2417         `owner`.`gsid` AS `owner-gsid`,
2418         `post`.`causer-id` AS `causer-id`,
2419         `causer`.`uri-id` AS `causer-uri-id`,
2420         `causer`.`url` AS `causer-link`,
2421         `causer`.`addr` AS `causer-addr`,
2422         `causer`.`name` AS `causer-name`,
2423         `causer`.`nick` AS `causer-nick`,
2424         `causer`.`alias` AS `causer-alias`,
2425         `causer`.`thumb` AS `causer-avatar`,
2426         `causer`.`network` AS `causer-network`,
2427         `causer`.`blocked` AS `causer-blocked`,
2428         `causer`.`hidden` AS `causer-hidden`,
2429         `causer`.`contact-type` AS `causer-contact-type`,
2430         `causer`.`gsid` AS `causer-gsid`,
2431         `post-question`.`id` AS `question-id`,
2432         `post-question`.`multiple` AS `question-multiple`,
2433         `post-question`.`voters` AS `question-voters`,
2434         `post-question`.`end-time` AS `question-end-time`,
2435         0 AS `has-categories`,
2436         EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post`.`uri-id`) AS `has-media`,
2437         `diaspora-interaction`.`interaction` AS `signed_text`,
2438         `parent-item-uri`.`guid` AS `parent-guid`,
2439         `post-thread`.`network` AS `parent-network`,
2440         `post-thread`.`author-id` AS `parent-author-id`,
2441         `parent-post-author`.`url` AS `parent-author-link`,
2442         `parent-post-author`.`name` AS `parent-author-name`,
2443         `parent-post-author`.`nick` AS `parent-author-nick`,
2444         `parent-post-author`.`network` AS `parent-author-network`
2445         FROM `post`
2446                         STRAIGHT_JOIN `post-thread` ON `post-thread`.`uri-id` = `post`.`parent-uri-id`
2447                         STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post`.`author-id`
2448                         STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post`.`owner-id`
2449                         LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post`.`causer-id`
2450                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `post`.`uri-id`
2451                         LEFT JOIN `item-uri` AS `thr-parent-item-uri` ON `thr-parent-item-uri`.`id` = `post`.`thr-parent-id`
2452                         LEFT JOIN `item-uri` AS `parent-item-uri` ON `parent-item-uri`.`id` = `post`.`parent-uri-id`
2453                         LEFT JOIN `item-uri` AS `conversation-item-uri` ON `conversation-item-uri`.`id` = `post-thread`.`conversation-id`
2454                         LEFT JOIN `item-uri` AS `external-item-uri` ON `external-item-uri`.`id` = `post`.`external-id`
2455                         LEFT JOIN `verb` ON `verb`.`id` = `post`.`vid`
2456                         LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post`.`uri-id`
2457                         LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post`.`uri-id`
2458                         LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id`
2459                         LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post`.`uri-id`
2460                         LEFT JOIN `contact` AS `parent-post-author` ON `parent-post-author`.`id` = `post-thread`.`author-id`;
2461
2462 --
2463 -- VIEW post-thread-view
2464 --
2465 DROP VIEW IF EXISTS `post-thread-view`;
2466 CREATE VIEW `post-thread-view` AS SELECT 
2467         `item-uri`.`uri` AS `uri`,
2468         `post-thread`.`uri-id` AS `uri-id`,
2469         `parent-item-uri`.`uri` AS `parent-uri`,
2470         `post`.`parent-uri-id` AS `parent-uri-id`,
2471         `thr-parent-item-uri`.`uri` AS `thr-parent`,
2472         `post`.`thr-parent-id` AS `thr-parent-id`,
2473         `conversation-item-uri`.`uri` AS `conversation`,
2474         `post-thread`.`conversation-id` AS `conversation-id`,
2475         `quote-item-uri`.`uri` AS `quote-uri`,
2476         `post-content`.`quote-uri-id` AS `quote-uri-id`,
2477         `item-uri`.`guid` AS `guid`,
2478         `post`.`gravity` AS `gravity`,
2479         `external-item-uri`.`uri` AS `extid`,
2480         `post`.`external-id` AS `external-id`,
2481         `post-thread`.`created` AS `created`,
2482         `post`.`edited` AS `edited`,
2483         `post-thread`.`commented` AS `commented`,
2484         `post-thread`.`received` AS `received`,
2485         `post-thread`.`changed` AS `changed`,
2486         `post`.`post-type` AS `post-type`,
2487         `post`.`private` AS `private`,
2488         `post`.`visible` AS `visible`,
2489         `post`.`deleted` AS `deleted`,
2490         `post`.`global` AS `global`,
2491         EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post-thread`.`uri-id`) AS `featured`,
2492         `post-thread`.`network` AS `network`,
2493         `post`.`vid` AS `vid`,
2494         IF (`post`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
2495         `post-content`.`title` AS `title`,
2496         `post-content`.`content-warning` AS `content-warning`,
2497         `post-content`.`raw-body` AS `raw-body`,
2498         `post-content`.`body` AS `body`,
2499         `post-content`.`rendered-hash` AS `rendered-hash`,
2500         `post-content`.`rendered-html` AS `rendered-html`,
2501         `post-content`.`language` AS `language`,
2502         `post-content`.`plink` AS `plink`,
2503         `post-content`.`location` AS `location`,
2504         `post-content`.`coord` AS `coord`,
2505         `post-content`.`app` AS `app`,
2506         `post-content`.`object-type` AS `object-type`,
2507         `post-content`.`object` AS `object`,
2508         `post-content`.`target-type` AS `target-type`,
2509         `post-content`.`target` AS `target`,
2510         `post-content`.`resource-id` AS `resource-id`,
2511         `post-thread`.`author-id` AS `contact-id`,
2512         `author`.`uri-id` AS `contact-uri-id`,
2513         `author`.`url` AS `contact-link`,
2514         `author`.`addr` AS `contact-addr`,
2515         `author`.`name` AS `contact-name`,
2516         `author`.`nick` AS `contact-nick`,
2517         `author`.`thumb` AS `contact-avatar`,
2518         `author`.`network` AS `contact-network`,
2519         `author`.`blocked` AS `contact-blocked`,
2520         `author`.`hidden` AS `contact-hidden`,
2521         `author`.`readonly` AS `contact-readonly`,
2522         `author`.`archive` AS `contact-archive`,
2523         `author`.`pending` AS `contact-pending`,
2524         `author`.`rel` AS `contact-rel`,
2525         `author`.`uid` AS `contact-uid`,
2526         `author`.`contact-type` AS `contact-contact-type`,
2527         IF (`post`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `author`.`writable`) AS `writable`,
2528         false AS `self`,
2529         `author`.`id` AS `cid`,
2530         `author`.`alias` AS `alias`,
2531         `author`.`photo` AS `photo`,
2532         `author`.`name-date` AS `name-date`,
2533         `author`.`uri-date` AS `uri-date`,
2534         `author`.`avatar-date` AS `avatar-date`,
2535         `author`.`thumb` AS `thumb`,
2536         `post-thread`.`author-id` AS `author-id`,
2537         `author`.`uri-id` AS `author-uri-id`,
2538         `author`.`url` AS `author-link`,
2539         `author`.`addr` AS `author-addr`,
2540         `author`.`name` AS `author-name`,
2541         `author`.`nick` AS `author-nick`,
2542         `author`.`alias` AS `author-alias`,
2543         `author`.`thumb` AS `author-avatar`,
2544         `author`.`network` AS `author-network`,
2545         `author`.`blocked` AS `author-blocked`,
2546         `author`.`hidden` AS `author-hidden`,
2547         `author`.`updated` AS `author-updated`,
2548         `author`.`gsid` AS `author-gsid`,
2549         `post-thread`.`owner-id` AS `owner-id`,
2550         `owner`.`uri-id` AS `owner-uri-id`,
2551         `owner`.`url` AS `owner-link`,
2552         `owner`.`addr` AS `owner-addr`,
2553         `owner`.`name` AS `owner-name`,
2554         `owner`.`nick` AS `owner-nick`,
2555         `owner`.`alias` AS `owner-alias`,
2556         `owner`.`thumb` AS `owner-avatar`,
2557         `owner`.`network` AS `owner-network`,
2558         `owner`.`blocked` AS `owner-blocked`,
2559         `owner`.`hidden` AS `owner-hidden`,
2560         `owner`.`updated` AS `owner-updated`,
2561         `owner`.`gsid` AS `owner-gsid`,
2562         `owner`.`contact-type` AS `owner-contact-type`,
2563         `post-thread`.`causer-id` AS `causer-id`,
2564         `causer`.`uri-id` AS `causer-uri-id`,
2565         `causer`.`url` AS `causer-link`,
2566         `causer`.`addr` AS `causer-addr`,
2567         `causer`.`name` AS `causer-name`,
2568         `causer`.`nick` AS `causer-nick`,
2569         `causer`.`alias` AS `causer-alias`,
2570         `causer`.`thumb` AS `causer-avatar`,
2571         `causer`.`network` AS `causer-network`,
2572         `causer`.`blocked` AS `causer-blocked`,
2573         `causer`.`hidden` AS `causer-hidden`,
2574         `causer`.`gsid` AS `causer-gsid`,
2575         `causer`.`contact-type` AS `causer-contact-type`,
2576         `post-question`.`id` AS `question-id`,
2577         `post-question`.`multiple` AS `question-multiple`,
2578         `post-question`.`voters` AS `question-voters`,
2579         `post-question`.`end-time` AS `question-end-time`,
2580         0 AS `has-categories`,
2581         EXISTS(SELECT `id` FROM `post-media` WHERE `post-media`.`uri-id` = `post-thread`.`uri-id`) AS `has-media`,
2582         (SELECT COUNT(*) FROM `post` WHERE `parent-uri-id` = `post-thread`.`uri-id` AND `gravity` = 6) AS `total-comments`,
2583         (SELECT COUNT(DISTINCT(`author-id`)) FROM `post` WHERE `parent-uri-id` = `post-thread`.`uri-id` AND `gravity` = 6) AS `total-actors`,
2584         `diaspora-interaction`.`interaction` AS `signed_text`,
2585         `parent-item-uri`.`guid` AS `parent-guid`,
2586         `post-thread`.`network` AS `parent-network`,
2587         `post-thread`.`author-id` AS `parent-author-id`,
2588         `author`.`url` AS `parent-author-link`,
2589         `author`.`name` AS `parent-author-name`,
2590         `author`.`nick` AS `parent-author-nick`,
2591         `author`.`network` AS `parent-author-network`
2592         FROM `post-thread`
2593                         INNER JOIN `post` ON `post`.`uri-id` = `post-thread`.`uri-id`
2594                         STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post-thread`.`author-id`
2595                         STRAIGHT_JOIN `contact` AS `owner` ON `owner`.`id` = `post-thread`.`owner-id`
2596                         LEFT JOIN `contact` AS `causer` ON `causer`.`id` = `post-thread`.`causer-id`
2597                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `post-thread`.`uri-id`
2598                         LEFT JOIN `item-uri` AS `thr-parent-item-uri` ON `thr-parent-item-uri`.`id` = `post`.`thr-parent-id`
2599                         LEFT JOIN `item-uri` AS `parent-item-uri` ON `parent-item-uri`.`id` = `post`.`parent-uri-id`
2600                         LEFT JOIN `item-uri` AS `conversation-item-uri` ON `conversation-item-uri`.`id` = `post-thread`.`conversation-id`
2601                         LEFT JOIN `item-uri` AS `external-item-uri` ON `external-item-uri`.`id` = `post`.`external-id`
2602                         LEFT JOIN `verb` ON `verb`.`id` = `post`.`vid`
2603                         LEFT JOIN `diaspora-interaction` ON `diaspora-interaction`.`uri-id` = `post-thread`.`uri-id`
2604                         LEFT JOIN `post-content` ON `post-content`.`uri-id` = `post-thread`.`uri-id`
2605                         LEFT JOIN `item-uri` AS `quote-item-uri` ON `quote-item-uri`.`id` = `post-content`.`quote-uri-id`
2606                         LEFT JOIN `post-question` ON `post-question`.`uri-id` = `post-thread`.`uri-id`;
2607
2608 --
2609 -- VIEW category-view
2610 --
2611 DROP VIEW IF EXISTS `category-view`;
2612 CREATE VIEW `category-view` AS SELECT 
2613         `post-category`.`uri-id` AS `uri-id`,
2614         `post-category`.`uid` AS `uid`,
2615         `post-category`.`type` AS `type`,
2616         `post-category`.`tid` AS `tid`,
2617         `tag`.`name` AS `name`,
2618         `tag`.`url` AS `url`
2619         FROM `post-category`
2620                         LEFT JOIN `tag` ON `post-category`.`tid` = `tag`.`id`;
2621
2622 --
2623 -- VIEW collection-view
2624 --
2625 DROP VIEW IF EXISTS `collection-view`;
2626 CREATE VIEW `collection-view` AS SELECT 
2627         `post-collection`.`uri-id` AS `uri-id`,
2628         `post-collection`.`type` AS `type`,
2629         `post-collection`.`author-id` AS `cid`,
2630         `post`.`received` AS `received`,
2631         `post`.`created` AS `created`,
2632         `post-thread`.`commented` AS `commented`,
2633         `post`.`private` AS `private`,
2634         `post`.`visible` AS `visible`,
2635         `post`.`deleted` AS `deleted`,
2636         `post`.`thr-parent-id` AS `thr-parent-id`,
2637         `post-collection`.`author-id` AS `author-id`,
2638         `post`.`gravity` AS `gravity`
2639         FROM `post-collection`
2640                         INNER JOIN `post` ON `post-collection`.`uri-id` = `post`.`uri-id`
2641                         INNER JOIN `post-thread` ON `post-thread`.`uri-id` = `post`.`parent-uri-id`;
2642
2643 --
2644 -- VIEW media-view
2645 --
2646 DROP VIEW IF EXISTS `media-view`;
2647 CREATE VIEW `media-view` AS SELECT 
2648         `post-media`.`uri-id` AS `uri-id`,
2649         `post-media`.`type` AS `type`,
2650         `post`.`received` AS `received`,
2651         `post`.`created` AS `created`,
2652         `post`.`private` AS `private`,
2653         `post`.`visible` AS `visible`,
2654         `post`.`deleted` AS `deleted`,
2655         `post`.`thr-parent-id` AS `thr-parent-id`,
2656         `post`.`author-id` AS `author-id`,
2657         `post`.`gravity` AS `gravity`
2658         FROM `post-media`
2659                         INNER JOIN `post` ON `post-media`.`uri-id` = `post`.`uri-id`;
2660
2661 --
2662 -- VIEW tag-view
2663 --
2664 DROP VIEW IF EXISTS `tag-view`;
2665 CREATE VIEW `tag-view` AS SELECT 
2666         `post-tag`.`uri-id` AS `uri-id`,
2667         `post-tag`.`type` AS `type`,
2668         `post-tag`.`tid` AS `tid`,
2669         `post-tag`.`cid` AS `cid`,
2670         CASE `cid` WHEN 0 THEN `tag`.`name` ELSE `contact`.`name` END AS `name`,
2671         CASE `cid` WHEN 0 THEN `tag`.`url` ELSE `contact`.`url` END AS `url`,
2672         CASE `cid` WHEN 0 THEN `tag`.`type` ELSE 1 END AS `tag-type`
2673         FROM `post-tag`
2674                         LEFT JOIN `tag` ON `post-tag`.`tid` = `tag`.`id`
2675                         LEFT JOIN `contact` ON `post-tag`.`cid` = `contact`.`id`;
2676
2677 --
2678 -- VIEW network-item-view
2679 --
2680 DROP VIEW IF EXISTS `network-item-view`;
2681 CREATE VIEW `network-item-view` AS SELECT 
2682         `post-user`.`uri-id` AS `uri-id`,
2683         `post-thread-user`.`post-user-id` AS `parent`,
2684         `post-user`.`received` AS `received`,
2685         `post-thread-user`.`commented` AS `commented`,
2686         `post-user`.`created` AS `created`,
2687         `post-user`.`uid` AS `uid`,
2688         `post-thread-user`.`starred` AS `starred`,
2689         `post-thread-user`.`mention` AS `mention`,
2690         `post-user`.`network` AS `network`,
2691         `post-user`.`unseen` AS `unseen`,
2692         `post-user`.`gravity` AS `gravity`,
2693         `post-user`.`contact-id` AS `contact-id`,
2694         `ownercontact`.`contact-type` AS `contact-type`
2695         FROM `post-user`
2696                         INNER JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
2697                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
2698                         STRAIGHT_JOIN `contact` AS `authorcontact` ON `authorcontact`.`id` = `post-thread-user`.`author-id`
2699                         STRAIGHT_JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id`
2700                         WHERE `post-user`.`visible` AND NOT `post-user`.`deleted`
2701                         AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
2702                         AND (`post-user`.`hidden` IS NULL OR NOT `post-user`.`hidden`)
2703                         AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
2704                         AND NOT EXISTS(SELECT `cid`    FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
2705                         AND NOT EXISTS(SELECT `gsid`   FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
2706
2707 --
2708 -- VIEW network-thread-view
2709 --
2710 DROP VIEW IF EXISTS `network-thread-view`;
2711 CREATE VIEW `network-thread-view` AS SELECT 
2712         `post-thread-user`.`uri-id` AS `uri-id`,
2713         `post-thread-user`.`post-user-id` AS `parent`,
2714         `post-thread-user`.`received` AS `received`,
2715         `post-thread-user`.`commented` AS `commented`,
2716         `post-thread-user`.`created` AS `created`,
2717         `post-thread-user`.`uid` AS `uid`,
2718         `post-thread-user`.`starred` AS `starred`,
2719         `post-thread-user`.`mention` AS `mention`,
2720         `post-thread-user`.`network` AS `network`,
2721         `post-thread-user`.`contact-id` AS `contact-id`,
2722         `ownercontact`.`contact-type` AS `contact-type`
2723         FROM `post-thread-user`
2724                         INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id`
2725                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id`
2726                         STRAIGHT_JOIN `contact` AS `authorcontact` ON `authorcontact`.`id` = `post-thread-user`.`author-id`
2727                         STRAIGHT_JOIN `contact` AS `ownercontact` ON `ownercontact`.`id` = `post-thread-user`.`owner-id`
2728                         WHERE `post-user`.`visible` AND NOT `post-user`.`deleted`
2729                         AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
2730                         AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
2731                         AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
2732                         AND NOT EXISTS(SELECT `cid`    FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
2733                         AND NOT EXISTS(SELECT `gsid`   FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
2734
2735 --
2736 -- VIEW owner-view
2737 --
2738 DROP VIEW IF EXISTS `owner-view`;
2739 CREATE VIEW `owner-view` AS SELECT 
2740         `contact`.`id` AS `id`,
2741         `contact`.`uid` AS `uid`,
2742         `contact`.`created` AS `created`,
2743         `contact`.`updated` AS `updated`,
2744         `contact`.`self` AS `self`,
2745         `contact`.`remote_self` AS `remote_self`,
2746         `contact`.`rel` AS `rel`,
2747         `contact`.`network` AS `network`,
2748         `contact`.`protocol` AS `protocol`,
2749         `contact`.`name` AS `name`,
2750         `contact`.`nick` AS `nick`,
2751         `contact`.`location` AS `location`,
2752         `contact`.`about` AS `about`,
2753         `contact`.`keywords` AS `keywords`,
2754         `contact`.`xmpp` AS `xmpp`,
2755         `contact`.`matrix` AS `matrix`,
2756         `contact`.`attag` AS `attag`,
2757         `contact`.`avatar` AS `avatar`,
2758         `contact`.`photo` AS `photo`,
2759         `contact`.`thumb` AS `thumb`,
2760         `contact`.`micro` AS `micro`,
2761         `contact`.`header` AS `header`,
2762         `contact`.`url` AS `url`,
2763         `contact`.`nurl` AS `nurl`,
2764         `contact`.`uri-id` AS `uri-id`,
2765         `contact`.`addr` AS `addr`,
2766         `contact`.`alias` AS `alias`,
2767         `contact`.`pubkey` AS `pubkey`,
2768         `contact`.`prvkey` AS `prvkey`,
2769         `contact`.`batch` AS `batch`,
2770         `contact`.`request` AS `request`,
2771         `contact`.`notify` AS `notify`,
2772         `contact`.`poll` AS `poll`,
2773         `contact`.`confirm` AS `confirm`,
2774         `contact`.`poco` AS `poco`,
2775         `contact`.`subhub` AS `subhub`,
2776         `contact`.`hub-verify` AS `hub-verify`,
2777         `contact`.`last-update` AS `last-update`,
2778         `contact`.`success_update` AS `success_update`,
2779         `contact`.`failure_update` AS `failure_update`,
2780         `contact`.`name-date` AS `name-date`,
2781         `contact`.`uri-date` AS `uri-date`,
2782         `contact`.`avatar-date` AS `avatar-date`,
2783         `contact`.`avatar-date` AS `picdate`,
2784         `contact`.`term-date` AS `term-date`,
2785         `contact`.`last-item` AS `last-item`,
2786         `contact`.`priority` AS `priority`,
2787         `user`.`blocked` AS `blocked`,
2788         `contact`.`block_reason` AS `block_reason`,
2789         `contact`.`readonly` AS `readonly`,
2790         `contact`.`writable` AS `writable`,
2791         `contact`.`forum` AS `forum`,
2792         `contact`.`prv` AS `prv`,
2793         `contact`.`contact-type` AS `contact-type`,
2794         `contact`.`manually-approve` AS `manually-approve`,
2795         `contact`.`hidden` AS `hidden`,
2796         `contact`.`archive` AS `archive`,
2797         `contact`.`pending` AS `pending`,
2798         `contact`.`deleted` AS `deleted`,
2799         `contact`.`unsearchable` AS `unsearchable`,
2800         `contact`.`sensitive` AS `sensitive`,
2801         `contact`.`baseurl` AS `baseurl`,
2802         `contact`.`reason` AS `reason`,
2803         `contact`.`info` AS `info`,
2804         `contact`.`bdyear` AS `bdyear`,
2805         `contact`.`bd` AS `bd`,
2806         `contact`.`notify_new_posts` AS `notify_new_posts`,
2807         `contact`.`fetch_further_information` AS `fetch_further_information`,
2808         `contact`.`ffi_keyword_denylist` AS `ffi_keyword_denylist`,
2809         `user`.`parent-uid` AS `parent-uid`,
2810         `user`.`guid` AS `guid`,
2811         `user`.`nickname` AS `nickname`,
2812         `user`.`email` AS `email`,
2813         `user`.`openid` AS `openid`,
2814         `user`.`timezone` AS `timezone`,
2815         `user`.`language` AS `language`,
2816         `user`.`register_date` AS `register_date`,
2817         `user`.`login_date` AS `login_date`,
2818         `user`.`last-activity` AS `last-activity`,
2819         `user`.`default-location` AS `default-location`,
2820         `user`.`allow_location` AS `allow_location`,
2821         `user`.`theme` AS `theme`,
2822         `user`.`pubkey` AS `upubkey`,
2823         `user`.`prvkey` AS `uprvkey`,
2824         `user`.`sprvkey` AS `sprvkey`,
2825         `user`.`spubkey` AS `spubkey`,
2826         `user`.`verified` AS `verified`,
2827         `user`.`blockwall` AS `blockwall`,
2828         `user`.`hidewall` AS `hidewall`,
2829         `user`.`blocktags` AS `blocktags`,
2830         `user`.`unkmail` AS `unkmail`,
2831         `user`.`cntunkmail` AS `cntunkmail`,
2832         `user`.`notify-flags` AS `notify-flags`,
2833         `user`.`page-flags` AS `page-flags`,
2834         `user`.`account-type` AS `account-type`,
2835         `user`.`prvnets` AS `prvnets`,
2836         `user`.`maxreq` AS `maxreq`,
2837         `user`.`expire` AS `expire`,
2838         `user`.`account_removed` AS `account_removed`,
2839         `user`.`account_expired` AS `account_expired`,
2840         `user`.`account_expires_on` AS `account_expires_on`,
2841         `user`.`expire_notification_sent` AS `expire_notification_sent`,
2842         `user`.`def_gid` AS `def_gid`,
2843         `user`.`allow_cid` AS `allow_cid`,
2844         `user`.`allow_gid` AS `allow_gid`,
2845         `user`.`deny_cid` AS `deny_cid`,
2846         `user`.`deny_gid` AS `deny_gid`,
2847         `user`.`openidserver` AS `openidserver`,
2848         `profile`.`publish` AS `publish`,
2849         `profile`.`net-publish` AS `net-publish`,
2850         `profile`.`hide-friends` AS `hide-friends`,
2851         `profile`.`prv_keywords` AS `prv_keywords`,
2852         `profile`.`pub_keywords` AS `pub_keywords`,
2853         `profile`.`address` AS `address`,
2854         `profile`.`locality` AS `locality`,
2855         `profile`.`region` AS `region`,
2856         `profile`.`postal-code` AS `postal-code`,
2857         `profile`.`country-name` AS `country-name`,
2858         `profile`.`homepage` AS `homepage`,
2859         `profile`.`homepage_verified` AS `homepage_verified`,
2860         `profile`.`dob` AS `dob`
2861         FROM `user`
2862                         INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
2863                         INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid`;
2864
2865 --
2866 -- VIEW account-view
2867 --
2868 DROP VIEW IF EXISTS `account-view`;
2869 CREATE VIEW `account-view` AS SELECT 
2870         `contact`.`id` AS `id`,
2871         `contact`.`url` AS `url`,
2872         `contact`.`nurl` AS `nurl`,
2873         `contact`.`uri-id` AS `uri-id`,
2874         `item-uri`.`guid` AS `guid`,
2875         `contact`.`addr` AS `addr`,
2876         `contact`.`alias` AS `alias`,
2877         `contact`.`name` AS `name`,
2878         `contact`.`nick` AS `nick`,
2879         `contact`.`about` AS `about`,
2880         `contact`.`keywords` AS `keywords`,
2881         `contact`.`xmpp` AS `xmpp`,
2882         `contact`.`matrix` AS `matrix`,
2883         `contact`.`avatar` AS `avatar`,
2884         `contact`.`photo` AS `photo`,
2885         `contact`.`thumb` AS `thumb`,
2886         `contact`.`micro` AS `micro`,
2887         `contact`.`header` AS `header`,
2888         `contact`.`created` AS `created`,
2889         `contact`.`updated` AS `updated`,
2890         `contact`.`network` AS `network`,
2891         `contact`.`protocol` AS `protocol`,
2892         `contact`.`location` AS `location`,
2893         `contact`.`attag` AS `attag`,
2894         `contact`.`pubkey` AS `pubkey`,
2895         `contact`.`prvkey` AS `prvkey`,
2896         `contact`.`subscribe` AS `subscribe`,
2897         `contact`.`last-update` AS `last-update`,
2898         `contact`.`success_update` AS `success_update`,
2899         `contact`.`failure_update` AS `failure_update`,
2900         `contact`.`failed` AS `failed`,
2901         `contact`.`last-item` AS `last-item`,
2902         `contact`.`last-discovery` AS `last-discovery`,
2903         `contact`.`contact-type` AS `contact-type`,
2904         `contact`.`manually-approve` AS `manually-approve`,
2905         `contact`.`unsearchable` AS `unsearchable`,
2906         `contact`.`sensitive` AS `sensitive`,
2907         `contact`.`baseurl` AS `baseurl`,
2908         `contact`.`gsid` AS `gsid`,
2909         `contact`.`info` AS `info`,
2910         `contact`.`bdyear` AS `bdyear`,
2911         `contact`.`bd` AS `bd`,
2912         `contact`.`poco` AS `poco`,
2913         `contact`.`name-date` AS `name-date`,
2914         `contact`.`uri-date` AS `uri-date`,
2915         `contact`.`avatar-date` AS `avatar-date`,
2916         `contact`.`term-date` AS `term-date`,
2917         `contact`.`hidden` AS `global-ignored`,
2918         `contact`.`blocked` AS `global-blocked`,
2919         `contact`.`hidden` AS `hidden`,
2920         `contact`.`archive` AS `archive`,
2921         `contact`.`deleted` AS `deleted`,
2922         `contact`.`blocked` AS `blocked`,
2923         `contact`.`notify` AS `dfrn-notify`,
2924         `contact`.`poll` AS `dfrn-poll`,
2925         `item-uri`.`guid` AS `diaspora-guid`,
2926         `diaspora-contact`.`batch` AS `diaspora-batch`,
2927         `diaspora-contact`.`notify` AS `diaspora-notify`,
2928         `diaspora-contact`.`poll` AS `diaspora-poll`,
2929         `diaspora-contact`.`alias` AS `diaspora-alias`,
2930         `apcontact`.`uuid` AS `ap-uuid`,
2931         `apcontact`.`type` AS `ap-type`,
2932         `apcontact`.`following` AS `ap-following`,
2933         `apcontact`.`followers` AS `ap-followers`,
2934         `apcontact`.`inbox` AS `ap-inbox`,
2935         `apcontact`.`outbox` AS `ap-outbox`,
2936         `apcontact`.`sharedinbox` AS `ap-sharedinbox`,
2937         `apcontact`.`generator` AS `ap-generator`,
2938         `apcontact`.`following_count` AS `ap-following_count`,
2939         `apcontact`.`followers_count` AS `ap-followers_count`,
2940         `apcontact`.`statuses_count` AS `ap-statuses_count`,
2941         `gserver`.`site_name` AS `site_name`,
2942         `gserver`.`platform` AS `platform`,
2943         `gserver`.`version` AS `version`,
2944         `gserver`.`blocked` AS `server-blocked`,
2945         `gserver`.`failed` AS `server-failed`
2946         FROM `contact`
2947                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `contact`.`uri-id`
2948                         LEFT JOIN `apcontact` ON `apcontact`.`uri-id` = `contact`.`uri-id`
2949                         LEFT JOIN `diaspora-contact` ON `diaspora-contact`.`uri-id` = contact.`uri-id`
2950                         LEFT JOIN `gserver` ON `gserver`.`id` = contact.`gsid`
2951                         WHERE `contact`.`uid` = 0;
2952
2953 --
2954 -- VIEW account-user-view
2955 --
2956 DROP VIEW IF EXISTS `account-user-view`;
2957 CREATE VIEW `account-user-view` AS SELECT 
2958         `ucontact`.`id` AS `id`,
2959         `contact`.`id` AS `pid`,
2960         `ucontact`.`uid` AS `uid`,
2961         `contact`.`url` AS `url`,
2962         `contact`.`nurl` AS `nurl`,
2963         `contact`.`uri-id` AS `uri-id`,
2964         `item-uri`.`guid` AS `guid`,
2965         `contact`.`addr` AS `addr`,
2966         `contact`.`alias` AS `alias`,
2967         `contact`.`name` AS `name`,
2968         `contact`.`nick` AS `nick`,
2969         `contact`.`about` AS `about`,
2970         `contact`.`keywords` AS `keywords`,
2971         `contact`.`xmpp` AS `xmpp`,
2972         `contact`.`matrix` AS `matrix`,
2973         `contact`.`avatar` AS `avatar`,
2974         `contact`.`photo` AS `photo`,
2975         `contact`.`thumb` AS `thumb`,
2976         `contact`.`micro` AS `micro`,
2977         `contact`.`header` AS `header`,
2978         `contact`.`created` AS `created`,
2979         `contact`.`updated` AS `updated`,
2980         `ucontact`.`self` AS `self`,
2981         `ucontact`.`remote_self` AS `remote_self`,
2982         `ucontact`.`rel` AS `rel`,
2983         `contact`.`network` AS `network`,
2984         `ucontact`.`protocol` AS `protocol`,
2985         `contact`.`location` AS `location`,
2986         `ucontact`.`attag` AS `attag`,
2987         `contact`.`pubkey` AS `pubkey`,
2988         `contact`.`prvkey` AS `prvkey`,
2989         `contact`.`subscribe` AS `subscribe`,
2990         `contact`.`last-update` AS `last-update`,
2991         `contact`.`success_update` AS `success_update`,
2992         `contact`.`failure_update` AS `failure_update`,
2993         `contact`.`failed` AS `failed`,
2994         `contact`.`last-item` AS `last-item`,
2995         `contact`.`last-discovery` AS `last-discovery`,
2996         `contact`.`contact-type` AS `contact-type`,
2997         `contact`.`manually-approve` AS `manually-approve`,
2998         `contact`.`unsearchable` AS `unsearchable`,
2999         `contact`.`sensitive` AS `sensitive`,
3000         `contact`.`baseurl` AS `baseurl`,
3001         `contact`.`gsid` AS `gsid`,
3002         `ucontact`.`info` AS `info`,
3003         `contact`.`bdyear` AS `bdyear`,
3004         `contact`.`bd` AS `bd`,
3005         `contact`.`poco` AS `poco`,
3006         `contact`.`name-date` AS `name-date`,
3007         `contact`.`uri-date` AS `uri-date`,
3008         `contact`.`avatar-date` AS `avatar-date`,
3009         `contact`.`term-date` AS `term-date`,
3010         `contact`.`hidden` AS `global-ignored`,
3011         `contact`.`blocked` AS `global-blocked`,
3012         `ucontact`.`hidden` AS `hidden`,
3013         `ucontact`.`archive` AS `archive`,
3014         `ucontact`.`pending` AS `pending`,
3015         `ucontact`.`deleted` AS `deleted`,
3016         `ucontact`.`notify_new_posts` AS `notify_new_posts`,
3017         `ucontact`.`fetch_further_information` AS `fetch_further_information`,
3018         `ucontact`.`ffi_keyword_denylist` AS `ffi_keyword_denylist`,
3019         `ucontact`.`rating` AS `rating`,
3020         `ucontact`.`readonly` AS `readonly`,
3021         `ucontact`.`blocked` AS `blocked`,
3022         `ucontact`.`block_reason` AS `block_reason`,
3023         `ucontact`.`subhub` AS `subhub`,
3024         `ucontact`.`hub-verify` AS `hub-verify`,
3025         `ucontact`.`reason` AS `reason`,
3026         `contact`.`notify` AS `dfrn-notify`,
3027         `contact`.`poll` AS `dfrn-poll`,
3028         `item-uri`.`guid` AS `diaspora-guid`,
3029         `diaspora-contact`.`batch` AS `diaspora-batch`,
3030         `diaspora-contact`.`notify` AS `diaspora-notify`,
3031         `diaspora-contact`.`poll` AS `diaspora-poll`,
3032         `diaspora-contact`.`alias` AS `diaspora-alias`,
3033         `diaspora-contact`.`interacting_count` AS `diaspora-interacting_count`,
3034         `diaspora-contact`.`interacted_count` AS `diaspora-interacted_count`,
3035         `diaspora-contact`.`post_count` AS `diaspora-post_count`,
3036         `apcontact`.`uuid` AS `ap-uuid`,
3037         `apcontact`.`type` AS `ap-type`,
3038         `apcontact`.`following` AS `ap-following`,
3039         `apcontact`.`followers` AS `ap-followers`,
3040         `apcontact`.`inbox` AS `ap-inbox`,
3041         `apcontact`.`outbox` AS `ap-outbox`,
3042         `apcontact`.`sharedinbox` AS `ap-sharedinbox`,
3043         `apcontact`.`generator` AS `ap-generator`,
3044         `apcontact`.`following_count` AS `ap-following_count`,
3045         `apcontact`.`followers_count` AS `ap-followers_count`,
3046         `apcontact`.`statuses_count` AS `ap-statuses_count`,
3047         `gserver`.`site_name` AS `site_name`,
3048         `gserver`.`platform` AS `platform`,
3049         `gserver`.`version` AS `version`,
3050         `gserver`.`blocked` AS `server-blocked`,
3051         `gserver`.`failed` AS `server-failed`
3052         FROM `contact` AS `ucontact`
3053                         INNER JOIN `contact` ON `contact`.`uri-id` = `ucontact`.`uri-id` AND `contact`.`uid` = 0
3054                         LEFT JOIN `item-uri` ON `item-uri`.`id` = `ucontact`.`uri-id`
3055                         LEFT JOIN `apcontact` ON `apcontact`.`uri-id` = `ucontact`.`uri-id`
3056                         LEFT JOIN `diaspora-contact` ON `diaspora-contact`.`uri-id` = `ucontact`.`uri-id`
3057                         LEFT JOIN `gserver` ON `gserver`.`id` = contact.`gsid`;
3058
3059 --
3060 -- VIEW pending-view
3061 --
3062 DROP VIEW IF EXISTS `pending-view`;
3063 CREATE VIEW `pending-view` AS SELECT 
3064         `register`.`id` AS `id`,
3065         `register`.`hash` AS `hash`,
3066         `register`.`created` AS `created`,
3067         `register`.`uid` AS `uid`,
3068         `register`.`password` AS `password`,
3069         `register`.`language` AS `language`,
3070         `register`.`note` AS `note`,
3071         `contact`.`self` AS `self`,
3072         `contact`.`name` AS `name`,
3073         `contact`.`url` AS `url`,
3074         `contact`.`micro` AS `micro`,
3075         `user`.`email` AS `email`,
3076         `contact`.`nick` AS `nick`
3077         FROM `register`
3078                         INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid`
3079                         INNER JOIN `user` ON `register`.`uid` = `user`.`uid`;
3080
3081 --
3082 -- VIEW tag-search-view
3083 --
3084 DROP VIEW IF EXISTS `tag-search-view`;
3085 CREATE VIEW `tag-search-view` AS SELECT 
3086         `post-tag`.`uri-id` AS `uri-id`,
3087         `post-user`.`uid` AS `uid`,
3088         `post-user`.`id` AS `iid`,
3089         `post-user`.`private` AS `private`,
3090         `post-user`.`wall` AS `wall`,
3091         `post-user`.`origin` AS `origin`,
3092         `post-user`.`global` AS `global`,
3093         `post-user`.`gravity` AS `gravity`,
3094         `post-user`.`received` AS `received`,
3095         `post-user`.`network` AS `network`,
3096         `post-user`.`author-id` AS `author-id`,
3097         `tag`.`name` AS `name`
3098         FROM `post-tag`
3099                         INNER JOIN `tag` ON `tag`.`id` = `post-tag`.`tid`
3100                         STRAIGHT_JOIN `post-user` ON `post-user`.`uri-id` = `post-tag`.`uri-id`
3101                         WHERE `post-tag`.`type` = 1;
3102
3103 --
3104 -- VIEW workerqueue-view
3105 --
3106 DROP VIEW IF EXISTS `workerqueue-view`;
3107 CREATE VIEW `workerqueue-view` AS SELECT 
3108         `process`.`pid` AS `pid`,
3109         `workerqueue`.`priority` AS `priority`
3110         FROM `process`
3111                         INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid`
3112                         WHERE NOT `workerqueue`.`done`;
3113
3114 --
3115 -- VIEW profile_field-view
3116 --
3117 DROP VIEW IF EXISTS `profile_field-view`;
3118 CREATE VIEW `profile_field-view` AS SELECT 
3119         `profile_field`.`id` AS `id`,
3120         `profile_field`.`uid` AS `uid`,
3121         `profile_field`.`label` AS `label`,
3122         `profile_field`.`value` AS `value`,
3123         `profile_field`.`order` AS `order`,
3124         `profile_field`.`psid` AS `psid`,
3125         `permissionset`.`allow_cid` AS `allow_cid`,
3126         `permissionset`.`allow_gid` AS `allow_gid`,
3127         `permissionset`.`deny_cid` AS `deny_cid`,
3128         `permissionset`.`deny_gid` AS `deny_gid`,
3129         `profile_field`.`created` AS `created`,
3130         `profile_field`.`edited` AS `edited`
3131         FROM `profile_field`
3132                         INNER JOIN `permissionset` ON `permissionset`.`id` = `profile_field`.`psid`;
3133
3134 --
3135 -- VIEW diaspora-contact-view
3136 --
3137 DROP VIEW IF EXISTS `diaspora-contact-view`;
3138 CREATE VIEW `diaspora-contact-view` AS SELECT 
3139         `diaspora-contact`.`uri-id` AS `uri-id`,
3140         `item-uri`.`uri` AS `url`,
3141         `item-uri`.`guid` AS `guid`,
3142         `diaspora-contact`.`addr` AS `addr`,
3143         `diaspora-contact`.`alias` AS `alias`,
3144         `diaspora-contact`.`nick` AS `nick`,
3145         `diaspora-contact`.`name` AS `name`,
3146         `diaspora-contact`.`given-name` AS `given-name`,
3147         `diaspora-contact`.`family-name` AS `family-name`,
3148         `diaspora-contact`.`photo` AS `photo`,
3149         `diaspora-contact`.`photo-medium` AS `photo-medium`,
3150         `diaspora-contact`.`photo-small` AS `photo-small`,
3151         `diaspora-contact`.`batch` AS `batch`,
3152         `diaspora-contact`.`notify` AS `notify`,
3153         `diaspora-contact`.`poll` AS `poll`,
3154         `diaspora-contact`.`subscribe` AS `subscribe`,
3155         `diaspora-contact`.`searchable` AS `searchable`,
3156         `diaspora-contact`.`pubkey` AS `pubkey`,
3157         `gserver`.`url` AS `baseurl`,
3158         `diaspora-contact`.`gsid` AS `gsid`,
3159         `diaspora-contact`.`created` AS `created`,
3160         `diaspora-contact`.`updated` AS `updated`,
3161         `diaspora-contact`.`interacting_count` AS `interacting_count`,
3162         `diaspora-contact`.`interacted_count` AS `interacted_count`,
3163         `diaspora-contact`.`post_count` AS `post_count`
3164         FROM `diaspora-contact`
3165                         INNER JOIN `item-uri` ON `item-uri`.`id` = `diaspora-contact`.`uri-id`
3166                         LEFT JOIN `gserver` ON `gserver`.`id` = `diaspora-contact`.`gsid`;