]> git.mxchange.org Git - friendica.git/blob - static/dbstructure.config.php
Changed index for the categories
[friendica.git] / static / dbstructure.config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  * Main database structure configuration file.
21  *
22  * Here are described all the tables, fields and indexes Friendica needs to work.
23  * The entry order is mostly alphabetic - with the exception of tables that are used in foreign keys.
24  *
25  * Syntax (braces indicate optionale values):
26  * "<table name>" => [
27  *      "comment" => "Description of the table",
28  *      "fields" => [
29  *              "<field name>" => [
30  *                      "type" => "<field type>{(<field size>)} <unsigned>",
31  *                      "not null" => 0|1,
32  *                      {"extra" => "auto_increment",}
33  *                      {"default" => "<default value>",}
34  *                      {"default" => NULL_DATE,} (for datetime fields)
35  *                      {"primary" => "1",}
36  *                      {"foreign|relation" => ["<foreign key table name>" => "<foreign key field name>"],}
37  *                      "comment" => "Description of the fields"
38  *              ],
39  *              ...
40  *      ],
41  *      "indexes" => [
42  *              "PRIMARY" => ["<primary key field name>", ...],
43  *              "<index name>" => [{"UNIQUE",} "<field name>{(<key size>)}", ...]
44  *              ...
45  *      ],
46  * ],
47  *
48  * Whenever possible prefer "foreign" before "relation" with the foreign keys.
49  * "foreign" adds true foreign keys on the database level, while "relation" is just an indicator of a table relation without any consequences
50  *
51  * If you need to make any change, make sure to increment the DB_UPDATE_VERSION constant value below.
52  *
53  */
54
55 use Friendica\Database\DBA;
56
57 if (!defined('DB_UPDATE_VERSION')) {
58         define('DB_UPDATE_VERSION', 1461);
59 }
60
61 return [
62         // Side tables
63         "gserver" => [
64                 "comment" => "Global servers",
65                 "fields" => [
66                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
67                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
68                         "nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
69                         "version" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
70                         "site_name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
71                         "info" => ["type" => "text", "comment" => ""],
72                         "register_policy" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
73                         "registered-users" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Number of registered users"],
74                         "active-week-users" => ["type" => "int unsigned", "comment" => "Number of active users in the last week"],
75                         "active-month-users" => ["type" => "int unsigned", "comment" => "Number of active users in the last month"],
76                         "active-halfyear-users" => ["type" => "int unsigned", "comment" => "Number of active users in the last six month"],
77                         "local-posts" => ["type" => "int unsigned", "comment" => "Number of local posts"],
78                         "local-comments" => ["type" => "int unsigned", "comment" => "Number of local comments"],
79                         "directory-type" => ["type" => "tinyint", "default" => "0", "comment" => "Type of directory service (Poco, Mastodon)"],
80                         "poco" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
81                         "noscrape" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
82                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
83                         "protocol" => ["type" => "tinyint unsigned", "comment" => "The protocol of the server"],
84                         "platform" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
85                         "relay-subscribe" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Has the server subscribed to the relay system"],
86                         "relay-scope" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => "The scope of messages that the server wants to get"],
87                         "detection-method" => ["type" => "tinyint unsigned", "comment" => "Method that had been used to detect that server"],
88                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
89                         "last_poco_query" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
90                         "last_contact" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Last successful connection request"],
91                         "last_failure" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Last failed connection request"],
92                         "failed" => ["type" => "boolean", "comment" => "Connection failed"],
93                         "next_contact" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Next connection request"],
94                 ],
95                 "indexes" => [
96                         "PRIMARY" => ["id"],
97                         "nurl" => ["UNIQUE", "nurl(190)"],
98                         "next_contact" => ["next_contact"],
99                         "network" => ["network"],
100                 ]
101         ],
102         "user" => [
103                 "comment" => "The local users",
104                 "fields" => [
105                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
106                         "parent-uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "The parent user that has full control about this user"],
107                         "guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this user"],
108                         "username" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Name that this user is known by"],
109                         "password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "encrypted password"],
110                         "legacy_password" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is the password hash double-hashed?"],
111                         "nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "nick- and user name"],
112                         "email" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "the users email address"],
113                         "openid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
114                         "timezone" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => "PHP-legal timezone"],
115                         "language" => ["type" => "varchar(32)", "not null" => "1", "default" => "en", "comment" => "default language"],
116                         "register_date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of registration"],
117                         "login_date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of last login"],
118                         "default-location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Default for item.location"],
119                         "allow_location" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 allows to display the location"],
120                         "theme" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "user theme preference"],
121                         "pubkey" => ["type" => "text", "comment" => "RSA public key 4096 bit"],
122                         "prvkey" => ["type" => "text", "comment" => "RSA private key 4096 bit"],
123                         "spubkey" => ["type" => "text", "comment" => ""],
124                         "sprvkey" => ["type" => "text", "comment" => ""],
125                         "verified" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "user is verified through email"],
126                         "blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 for user is blocked"],
127                         "blockwall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to post to the profile page of the user"],
128                         "hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide profile details from unkown viewers"],
129                         "blocktags" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to tag the post of this user"],
130                         "unkmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Permit unknown people to send private mails to this user"],
131                         "cntunkmail" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
132                         "notify-flags" => ["type" => "smallint unsigned", "not null" => "1", "default" => "65535", "comment" => "email notification options"],
133                         "page-flags" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "page/profile type"],
134                         "account-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
135                         "prvnets" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
136                         "pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
137                         "pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
138                         "maxreq" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
139                         "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
140                         "account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if 1 the account is removed"],
141                         "account_expired" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
142                         "account_expires_on" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp when account expires and will be deleted"],
143                         "expire_notification_sent" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of last warning of account expiration"],
144                         "def_gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
145                         "allow_cid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
146                         "allow_gid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
147                         "deny_cid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
148                         "deny_gid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
149                         "openidserver" => ["type" => "text", "comment" => ""],
150                 ],
151                 "indexes" => [
152                         "PRIMARY" => ["uid"],
153                         "nickname" => ["nickname(32)"],
154                         "parent-uid" => ["parent-uid"],
155                         "guid" => ["guid"],
156                         "email" => ["email(64)"],
157                 ]
158         ],
159         "item-uri" => [
160                 "comment" => "URI and GUID for items",
161                 "fields" => [
162                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
163                         "uri" => ["type" => "varbinary(255)", "not null" => "1", "comment" => "URI of an item"],
164                         "guid" => ["type" => "varbinary(255)", "comment" => "A unique identifier for an item"]
165                 ],
166                 "indexes" => [
167                         "PRIMARY" => ["id"],
168                         "uri" => ["UNIQUE", "uri"],
169                         "guid" => ["guid"]
170                 ]
171         ],
172         "contact" => [
173                 "comment" => "contact table",
174                 "fields" => [
175                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
176                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
177                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
178                         "updated" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Date of last contact update"],
179                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network of the contact"],
180                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Name that this contact is known by"],
181                         "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Nick- and user name of the contact"],
182                         "location" => ["type" => "varchar(255)", "default" => "", "comment" => ""],
183                         "about" => ["type" => "text", "comment" => ""],
184                         "keywords" => ["type" => "text", "comment" => "public keywords (interests) of the contact"],
185                         "xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
186                         "matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
187                         "avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
188                         "header" => ["type" => "varchar(255)", "comment" => "Header picture"],
189                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
190                         "nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
191                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
192                         "addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
193                         "alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
194                         "pubkey" => ["type" => "text", "comment" => "RSA public key 4096 bit"],
195                         "prvkey" => ["type" => "text", "comment" => "RSA private key 4096 bit"],
196                         "batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
197                         "notify" => ["type" => "varchar(255)", "comment" => ""],
198                         "poll" => ["type" => "varchar(255)", "comment" => ""],
199                         "subscribe" => ["type" => "varchar(255)", "comment" => ""],
200                         "last-update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last try to update the contact info"],
201                         "success_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful contact update"],
202                         "failure_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last failed update"],
203                         "failed" => ["type" => "boolean", "comment" => "Connection failed"],
204                         "term-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
205                         "last-item" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "date of the last post"],
206                         "last-discovery" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "date of the last follower discovery"],
207                         "blocked" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "Node-wide block status"],
208                         "block_reason" => ["type" => "text", "comment" => "Node-wide block reason"],
209                         "readonly" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "posts of the contact are readonly"],
210                         "contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Person, organisation, news, community, relay"],
211                         "manually-approve" => ["type" => "boolean", "comment" => "Contact requests have to be approved manually"],
212                         "archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
213                         "unsearchable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact prefers to not be searchable"],
214                         "sensitive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact posts sensitive content"],
215                         "baseurl" => ["type" => "varchar(255)", "default" => "", "comment" => "baseurl of the contact"],
216                         "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
217                         "bd" => ["type" => "date", "not null" => "1", "default" => DBA::NULL_DATE, "comment" => ""],
218                         // User depending fields
219                         "reason" => ["type" => "text", "comment" => ""],
220                         "self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 if the contact is the user him/her self"],
221                         "remote_self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
222                         "rel" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "The kind of the relation between the user and the contact"],
223                         "protocol" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Protocol of the contact"],
224                         "subhub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
225                         "hub-verify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
226                         "rating" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Automatically detected feed poll frequency"],
227                         "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Feed poll priority"],
228                         "attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
229                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
230                         "pending" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "Contact request is pending"],
231                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact has been deleted"],
232                         "info" => ["type" => "mediumtext", "comment" => ""],
233                         "notify_new_posts" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
234                         "fetch_further_information" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
235                         "ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
236                         // Deprecated, but still in use
237                         "photo" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo of the contact"],
238                         "thumb" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo (thumb size)"],
239                         "micro" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo (micro size)"],
240                         "name-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
241                         "uri-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
242                         "avatar-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
243                         "request" => ["type" => "varchar(255)", "comment" => ""],
244                         "confirm" => ["type" => "varchar(255)", "comment" => ""],
245                         "poco" => ["type" => "varchar(255)", "comment" => ""],
246                         "writable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
247                         "forum" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a forum. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = false instead"],
248                         "prv" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a private group. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = true instead"],
249                         "bdyear" => ["type" => "varchar(4)", "not null" => "1", "default" => "", "comment" => ""],
250                         // Deprecated fields that aren't in use anymore
251                         "site-pubkey" => ["type" => "text", "comment" => "Deprecated"],
252                         "gender" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
253                         "duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
254                         "issued-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
255                         "dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
256                         "aes_allow" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
257                         "ret-aes" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
258                         "usehub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
259                         "closeness" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "99", "comment" => "Deprecated"],
260                         "profile-id" => ["type" => "int unsigned", "comment" => "Deprecated"],
261                 ],
262                 "indexes" => [
263                         "PRIMARY" => ["id"],
264                         "uid_name" => ["uid", "name(190)"],
265                         "self_uid" => ["self", "uid"],
266                         "alias_uid" => ["alias(128)", "uid"],
267                         "pending_uid" => ["pending", "uid"],
268                         "blocked_uid" => ["blocked", "uid"],
269                         "uid_rel_network_poll" => ["uid", "rel", "network", "poll(64)", "archive"],
270                         "uid_network_batch" => ["uid", "network", "batch(64)"],
271                         "batch_contact-type" => ["batch(64)", "contact-type"],
272                         "addr_uid" => ["addr(128)", "uid"],
273                         "nurl_uid" => ["nurl(128)", "uid"],
274                         "nick_uid" => ["nick(128)", "uid"],
275                         "attag_uid" => ["attag(96)", "uid"],
276                         "network_uid_lastupdate" => ["network", "uid", "last-update"],
277                         "uid_network_self_lastupdate" => ["uid", "network", "self", "last-update"],
278                         "uid_lastitem" => ["uid", "last-item"],
279                         "baseurl" => ["baseurl(64)"],
280                         "uid_contact-type" => ["uid", "contact-type"],
281                         "uid_self_contact-type" => ["uid", "self", "contact-type"],
282                         "self_network_uid" => ["self", "network", "uid"],
283                         "gsid" => ["gsid"],
284                         "uri-id" => ["uri-id"],
285                 ]
286         ],
287         "tag" => [
288                 "comment" => "tags and mentions",
289                 "fields" => [
290                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
291                         "name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
292                         "url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
293                         "type" => ["type" => "tinyint unsigned", "comment" => "Type of the tag (Unknown, General Collection, Follower Collection or Account)"],
294                 ],
295                 "indexes" => [
296                         "PRIMARY" => ["id"],
297                         "type_name_url" => ["UNIQUE", "name", "url"],
298                         "url" => ["url"]
299                 ]
300         ],
301         "permissionset" => [
302                 "comment" => "",
303                 "fields" => [
304                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
305                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner id of this permission set"],
306                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
307                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
308                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
309                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
310                 ],
311                 "indexes" => [
312                         "PRIMARY" => ["id"],
313                         "uid_allow_cid_allow_gid_deny_cid_deny_gid" => ["uid", "allow_cid(50)", "allow_gid(30)", "deny_cid(50)", "deny_gid(30)"],
314                 ]
315         ],
316         "verb" => [
317                 "comment" => "Activity Verbs",
318                 "fields" => [
319                         "id" => ["type" => "smallint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
320                         "name" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""]
321                 ],
322                 "indexes" => [
323                         "PRIMARY" => ["id"],
324                         "name" => ["name"]
325                 ]
326         ],
327         // Main tables
328         "2fa_app_specific_password" => [
329                 "comment" => "Two-factor app-specific _password",
330                 "fields" => [
331                         "id" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Password ID for revocation"],
332                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
333                         "description" => ["type" => "varchar(255)", "comment" => "Description of the usage of the password"],
334                         "hashed_password" => ["type" => "varchar(255)", "not null" => "1", "comment" => "Hashed password"],
335                         "generated" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the password was generated"],
336                         "last_used" => ["type" => "datetime", "comment" => "Datetime the password was last used"],
337                 ],
338                 "indexes" => [
339                         "PRIMARY" => ["id"],
340                         "uid_description" => ["uid", "description(190)"],
341                 ]
342         ],
343         "2fa_recovery_codes" => [
344                 "comment" => "Two-factor authentication recovery codes",
345                 "fields" => [
346                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
347                         "code" => ["type" => "varchar(50)", "not null" => "1", "primary" => "1", "comment" => "Recovery code string"],
348                         "generated" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the code was generated"],
349                         "used" => ["type" => "datetime", "comment" => "Datetime the code was used"],
350                 ],
351                 "indexes" => [
352                         "PRIMARY" => ["uid", "code"]
353                 ]
354         ],
355         "2fa_trusted_browser" => [
356                 "comment" => "Two-factor authentication trusted browsers",
357                 "fields" => [
358                         "cookie_hash" => ["type" => "varchar(80)", "not null" => "1", "primary" => "1", "comment" => "Trusted cookie hash"],
359                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
360                         "user_agent" => ["type" => "text", "comment" => "User agent string"],
361                         "created" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the trusted browser was recorded"],
362                         "last_used" => ["type" => "datetime", "comment" => "Datetime the trusted browser was last used"],
363                 ],
364                 "indexes" => [
365                         "PRIMARY" => ["cookie_hash"],
366                         "uid" => ["uid"],
367                 ]
368         ],
369         "addon" => [
370                 "comment" => "registered addons",
371                 "fields" => [
372                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
373                         "name" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "addon base (file)name"],
374                         "version" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "currently unused"],
375                         "installed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "currently always 1"],
376                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "currently unused"],
377                         "timestamp" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "file timestamp to check for reloads"],
378                         "plugin_admin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 = has admin config, 0 = has no admin config"],
379                 ],
380                 "indexes" => [
381                         "PRIMARY" => ["id"],
382                         "installed_name" => ["installed", "name"],
383                         "name" => ["UNIQUE", "name"],
384                 ]
385         ],
386         "apcontact" => [
387                 "comment" => "ActivityPub compatible contacts - used in the ActivityPub implementation",
388                 "fields" => [
389                         "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
390                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
391                         "uuid" => ["type" => "varchar(255)", "comment" => ""],
392                         "type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
393                         "following" => ["type" => "varchar(255)", "comment" => ""],
394                         "followers" => ["type" => "varchar(255)", "comment" => ""],
395                         "inbox" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
396                         "outbox" => ["type" => "varchar(255)", "comment" => ""],
397                         "sharedinbox" => ["type" => "varchar(255)", "comment" => ""],
398                         "featured" => ["type" => "varchar(255)", "comment" => "Address for the collection of featured posts"],
399                         "featured-tags" => ["type" => "varchar(255)", "comment" => "Address for the collection of featured tags"],
400                         "manually-approve" => ["type" => "boolean", "comment" => ""],
401                         "discoverable" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is published in their directory"],
402                         "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
403                         "name" => ["type" => "varchar(255)", "comment" => ""],
404                         "about" => ["type" => "text", "comment" => ""],
405                         "xmpp" => ["type" => "varchar(255)", "comment" => "XMPP address"],
406                         "matrix" => ["type" => "varchar(255)", "comment" => "Matrix address"],
407                         "photo" => ["type" => "varchar(255)", "comment" => ""],
408                         "header" => ["type" => "varchar(255)", "comment" => "Header picture"],
409                         "addr" => ["type" => "varchar(255)", "comment" => ""],
410                         "alias" => ["type" => "varchar(255)", "comment" => ""],
411                         "pubkey" => ["type" => "text", "comment" => ""],
412                         "subscribe" => ["type" => "varchar(255)", "comment" => ""],
413                         "baseurl" => ["type" => "varchar(255)", "comment" => "baseurl of the ap contact"],
414                         "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
415                         "generator" => ["type" => "varchar(255)", "comment" => "Name of the contact's system"],
416                         "following_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of following contacts"],
417                         "followers_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of followers"],
418                         "statuses_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of posts"],
419                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
420                 ],
421                 "indexes" => [
422                         "PRIMARY" => ["url"],
423                         "addr" => ["addr(32)"],
424                         "alias" => ["alias(190)"],
425                         "followers" => ["followers(190)"],
426                         "baseurl" => ["baseurl(190)"],
427                         "sharedinbox" => ["sharedinbox(190)"],
428                         "gsid" => ["gsid"],
429                         "uri-id" => ["UNIQUE", "uri-id"],
430                 ]
431         ],
432         "application" => [
433                 "comment" => "OAuth application",
434                 "fields" => [
435                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
436                         "client_id" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
437                         "client_secret" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
438                         "name" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
439                         "redirect_uri" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
440                         "website" => ["type" => "varchar(255)", "comment" => ""],
441                         "scopes" => ["type" => "varchar(255)", "comment" => ""],
442                         "read" => ["type" => "boolean", "comment" => "Read scope"],
443                         "write" => ["type" => "boolean", "comment" => "Write scope"],
444                         "follow" => ["type" => "boolean", "comment" => "Follow scope"],
445                         "push" => ["type" => "boolean", "comment" => "Push scope"],
446                 ],
447                 "indexes" => [
448                         "PRIMARY" => ["id"],
449                         "client_id" => ["UNIQUE", "client_id"]
450                 ]
451         ],
452         "application-token" => [
453                 "comment" => "OAuth user token",
454                 "fields" => [
455                         "application-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["application" => "id"], "comment" => ""],
456                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
457                         "code" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
458                         "access_token" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
459                         "created_at" => ["type" => "datetime", "not null" => "1", "comment" => "creation time"],
460                         "scopes" => ["type" => "varchar(255)", "comment" => ""],
461                         "read" => ["type" => "boolean", "comment" => "Read scope"],
462                         "write" => ["type" => "boolean", "comment" => "Write scope"],
463                         "follow" => ["type" => "boolean", "comment" => "Follow scope"],
464                         "push" => ["type" => "boolean", "comment" => "Push scope"],
465                 ],
466                 "indexes" => [
467                         "PRIMARY" => ["application-id", "uid"],
468                         "uid_id" => ["uid", "application-id"],
469                 ]
470         ],
471         "attach" => [
472                 "comment" => "file attachments",
473                 "fields" => [
474                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
475                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
476                         "hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "hash"],
477                         "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "filename of original"],
478                         "filetype" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "mimetype"],
479                         "filesize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "size in bytes"],
480                         "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"],
481                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
482                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
483                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>"],
484                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
485                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
486                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
487                         "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
488                         "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
489                 ],
490                 "indexes" => [
491                         "PRIMARY" => ["id"],
492                         "uid" => ["uid"],
493                 ]
494         ],
495         "cache" => [
496                 "comment" => "Stores temporary data",
497                 "fields" => [
498                         "k" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "cache key"],
499                         "v" => ["type" => "mediumtext", "comment" => "cached serialized value"],
500                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
501                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache insertion"],
502                 ],
503                 "indexes" => [
504                         "PRIMARY" => ["k"],
505                         "k_expires" => ["k", "expires"],
506                 ]
507         ],
508         "config" => [
509                 "comment" => "main configuration storage",
510                 "fields" => [
511                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
512                         "cat" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
513                         "k" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
514                         "v" => ["type" => "mediumtext", "comment" => ""],
515                 ],
516                 "indexes" => [
517                         "PRIMARY" => ["id"],
518                         "cat_k" => ["UNIQUE", "cat", "k"],
519                 ]
520         ],
521         "contact-relation" => [
522                 "comment" => "Contact relations",
523                 "fields" => [
524                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "contact the related contact had interacted with"],
525                         "relation-cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "related contact who had interacted with the contact"],
526                         "last-interaction" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last interaction"],
527                         "follow-updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last update of the contact relationship"],
528                         "follows" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
529                 ],
530                 "indexes" => [
531                         "PRIMARY" => ["cid", "relation-cid"],
532                         "relation-cid" => ["relation-cid"],
533                 ]
534         ],
535         "conv" => [
536                 "comment" => "private messages",
537                 "fields" => [
538                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
539                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this conversation"],
540                         "recips" => ["type" => "text", "comment" => "sender_handle;recipient_handle"],
541                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
542                         "creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "handle of creator"],
543                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation timestamp"],
544                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "edited timestamp"],
545                         "subject" => ["type" => "text", "comment" => "subject of initial message"],
546                 ],
547                 "indexes" => [
548                         "PRIMARY" => ["id"],
549                         "uid" => ["uid"],
550                 ]
551         ],
552         "conversation" => [
553                 "comment" => "Raw data and structure information for messages",
554                 "fields" => [
555                         "item-uri" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "Original URI of the item - unrelated to the table with the same name"],
556                         "reply-to-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "URI to which this item is a reply"],
557                         "conversation-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "GNU Social conversation URI"],
558                         "conversation-href" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "GNU Social conversation link"],
559                         "protocol" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "255", "comment" => "The protocol of the item"],
560                         "direction" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "How the message arrived here: 1=push, 2=pull"],
561                         "source" => ["type" => "mediumtext", "comment" => "Original source"],
562                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Receiving date"],
563                 ],
564                 "indexes" => [
565                         "PRIMARY" => ["item-uri"],
566                         "conversation-uri" => ["conversation-uri"],
567                         "received" => ["received"],
568                 ]
569         ],
570         "workerqueue" => [
571                 "comment" => "Background tasks queue entries",
572                 "fields" => [
573                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
574                         "command" => ["type" => "varchar(100)", "comment" => "Task command"],
575                         "parameter" => ["type" => "mediumtext", "comment" => "Task parameter"],
576                         "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Task priority"],
577                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date"],
578                         "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
579                         "executed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Execution date"],
580                         "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
581                         "retrial" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
582                         "done" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marked 1 when the task was done - will be deleted later"],
583                 ],
584                 "indexes" => [
585                         "PRIMARY" => ["id"],
586                         "command" => ["command"],
587                         "done_command_parameter" => ["done", "command", "parameter(64)"],
588                         "done_executed" => ["done", "executed"],
589                         "done_priority_retrial_created" => ["done", "priority", "retrial", "created"],
590                         "done_priority_next_try" => ["done", "priority", "next_try"],
591                         "done_pid_next_try" => ["done", "pid", "next_try"],
592                         "done_pid_retrial" => ["done", "pid", "retrial"],
593                         "done_pid_priority_created" => ["done", "pid", "priority", "created"]
594                 ]
595         ],
596         "delayed-post" => [
597                 "comment" => "Posts that are about to be distributed at a later time",
598                 "fields" => [
599                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
600                         "uri" => ["type" => "varchar(255)", "comment" => "URI of the post that will be distributed later"],
601                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
602                         "delayed" => ["type" => "datetime", "comment" => "delay time"],
603                         "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
604                 ],
605                 "indexes" => [
606                         "PRIMARY" => ["id"],
607                         "uid_uri" => ["UNIQUE", "uid", "uri(190)"],
608                         "wid" => ["wid"],
609                 ]
610         ],
611         "diaspora-interaction" => [
612                 "comment" => "Signed Diaspora Interaction",
613                 "fields" => [
614                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
615                         "interaction" => ["type" => "mediumtext", "comment" => "The Diaspora interaction"]
616                 ],
617                 "indexes" => [
618                         "PRIMARY" => ["uri-id"]
619                 ]
620         ],
621         "endpoint" => [
622                 "comment" => "ActivityPub endpoints - used in the ActivityPub implementation",
623                 "fields" => [
624                         "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
625                         "type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
626                         "owner-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
627                 ],
628                 "indexes" => [
629                         "PRIMARY" => ["url"],
630                         "owner-uri-id_type" => ["UNIQUE", "owner-uri-id", "type"],
631                 ]
632         ],
633         "event" => [
634                 "comment" => "Events",
635                 "fields" => [
636                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
637                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
638                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
639                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
640                         "uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
641                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the event uri"],
642                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
643                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
644                         "start" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event start time"],
645                         "finish" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event end time"],
646                         "summary" => ["type" => "text", "comment" => "short description or title of the event"],
647                         "desc" => ["type" => "text", "comment" => "event description"],
648                         "location" => ["type" => "text", "comment" => "event location"],
649                         "type" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "comment" => "event or birthday"],
650                         "nofinish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if event does have no end this is 1"],
651                         "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "0 or 1"],
652                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
653                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
654                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
655                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
656                 ],
657                 "indexes" => [
658                         "PRIMARY" => ["id"],
659                         "uid_start" => ["uid", "start"],
660                         "cid" => ["cid"],
661                         "uri-id" => ["uri-id"],
662                 ]
663         ],
664         "fcontact" => [
665                 "comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
666                 "fields" => [
667                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
668                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "unique id"],
669                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
670                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the fcontact url"],
671                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
672                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
673                         "request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
674                         "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
675                         "addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
676                         "batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
677                         "notify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
678                         "poll" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
679                         "confirm" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
680                         "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
681                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
682                         "alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
683                         "pubkey" => ["type" => "text", "comment" => ""],
684                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
685                         "interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interactes with"],
686                         "interacted_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts that interacted with this contact"],
687                         "post_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of posts and comments"],
688                 ],
689                 "indexes" => [
690                         "PRIMARY" => ["id"],
691                         "addr" => ["addr(32)"],
692                         "url" => ["UNIQUE", "url(190)"],
693                         "uri-id" => ["UNIQUE", "uri-id"],
694                 ]
695         ],
696         "fsuggest" => [
697                 "comment" => "friend suggestion stuff",
698                 "fields" => [
699                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
700                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
701                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
702                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
703                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
704                         "request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
705                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
706                         "note" => ["type" => "text", "comment" => ""],
707                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
708                 ],
709                 "indexes" => [
710                         "PRIMARY" => ["id"],
711                         "cid" => ["cid"],
712                         "uid" => ["uid"],
713                 ]
714         ],
715         "group" => [
716                 "comment" => "privacy groups, group info",
717                 "fields" => [
718                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
719                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
720                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the member list is not private"],
721                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the group has been deleted"],
722                         "cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Contact id of forum. When this field is filled then the members are synced automatically."],
723                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "human readable name of group"],
724                 ],
725                 "indexes" => [
726                         "PRIMARY" => ["id"],
727                         "uid" => ["uid"],
728                         "cid" => ["cid"],
729                 ]
730         ],
731         "group_member" => [
732                 "comment" => "privacy groups, member info",
733                 "fields" => [
734                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
735                         "gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["group" => "id"], "comment" => "groups.id of the associated group"],
736                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id of the member assigned to the associated group"],
737                 ],
738                 "indexes" => [
739                         "PRIMARY" => ["id"],
740                         "contactid" => ["contact-id"],
741                         "gid_contactid" => ["UNIQUE", "gid", "contact-id"],
742                 ]
743         ],
744         "gserver-tag" => [
745                 "comment" => "Tags that the server has subscribed",
746                 "fields" => [
747                         "gserver-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["gserver" => "id"], "primary" => "1",
748                                 "comment" => "The id of the gserver"],
749                         "tag" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "primary" => "1", "comment" => "Tag that the server has subscribed"],
750                 ],
751                 "indexes" => [
752                         "PRIMARY" => ["gserver-id", "tag"],
753                         "tag" => ["tag"],
754                 ]
755         ],
756         "hook" => [
757                 "comment" => "addon hook registry",
758                 "fields" => [
759                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
760                         "hook" => ["type" => "varbinary(100)", "not null" => "1", "default" => "", "comment" => "name of hook"],
761                         "file" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "relative filename of hook handler"],
762                         "function" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "function name of hook handler"],
763                         "priority" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => "not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order"],
764                 ],
765                 "indexes" => [
766                         "PRIMARY" => ["id"],
767                         "priority" => ["priority"],
768                         "hook_file_function" => ["UNIQUE", "hook", "file", "function"],
769                 ]
770         ],
771         "inbox-status" => [
772                 "comment" => "Status of ActivityPub inboxes",
773                 "fields" => [
774                         "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the inbox"],
775                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
776                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of this entry"],
777                         "success" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful delivery"],
778                         "failure" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last failed delivery"],
779                         "previous" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Previous delivery date"],
780                         "archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is the inbox archived?"],
781                         "shared" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is it a shared inbox?"]
782                 ],
783                 "indexes" => [
784                         "PRIMARY" => ["url"],
785                         "uri-id" => ["uri-id"],
786                 ]
787         ],
788         "intro" => [
789                 "comment" => "",
790                 "fields" => [
791                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
792                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
793                         "fid" => ["type" => "int unsigned", "relation" => ["fcontact" => "id"], "comment" => "deprecated"],
794                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
795                         "suggest-cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Suggested contact"],
796                         "knowyou" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
797                         "duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
798                         "note" => ["type" => "text", "comment" => ""],
799                         "hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
800                         "datetime" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
801                         "blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
802                         "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
803                 ],
804                 "indexes" => [
805                         "PRIMARY" => ["id"],
806                         "contact-id" => ["contact-id"],
807                         "suggest-cid" => ["suggest-cid"],
808                         "uid" => ["uid"],
809                 ]
810         ],
811         "locks" => [
812                 "comment" => "",
813                 "fields" => [
814                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
815                         "name" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => ""],
816                         "locked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
817                         "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process ID"],
818                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
819                 ],
820                 "indexes" => [
821                         "PRIMARY" => ["id"],
822                         "name_expires" => ["name", "expires"]
823                 ]
824         ],
825         "mail" => [
826                 "comment" => "private messages",
827                 "fields" => [
828                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
829                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
830                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
831                         "from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
832                         "from-photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
833                         "from-url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
834                         "contact-id" => ["type" => "varchar(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
835                         "author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of the mail"],
836                         "convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],
837                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
838                         "body" => ["type" => "mediumtext", "comment" => ""],
839                         "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if message visited it is 1"],
840                         "reply" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
841                         "replied" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
842                         "unknown" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if sender not in the contact table this is 1"],
843                         "uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
844                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related mail"],
845                         "parent-uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
846                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related mail"],
847                         "thr-parent" => ["type" => "varchar(255)", "comment" => ""],
848                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
849                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time of the private message"],
850                 ],
851                 "indexes" => [
852                         "PRIMARY" => ["id"],
853                         "uid_seen" => ["uid", "seen"],
854                         "convid" => ["convid"],
855                         "uri" => ["uri(64)"],
856                         "parent-uri" => ["parent-uri(64)"],
857                         "contactid" => ["contact-id(32)"],
858                         "author-id" => ["author-id"],
859                         "uri-id" => ["uri-id"],
860                         "parent-uri-id" => ["parent-uri-id"],
861                         "thr-parent-id" => ["thr-parent-id"],
862                 ]
863         ],
864         "mailacct" => [
865                 "comment" => "Mail account data for fetching mails",
866                 "fields" => [
867                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
868                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
869                         "server" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
870                         "port" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
871                         "ssltype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
872                         "mailbox" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
873                         "user" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
874                         "pass" => ["type" => "text", "comment" => ""],
875                         "reply_to" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
876                         "action" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
877                         "movetofolder" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
878                         "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
879                         "last_check" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
880                 ],
881                 "indexes" => [
882                         "PRIMARY" => ["id"],
883                         "uid" => ["uid"],
884                 ]
885         ],
886         "manage" => [
887                 "comment" => "table of accounts that can manage each other",
888                 "fields" => [
889                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
890                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
891                         "mid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
892                 ],
893                 "indexes" => [
894                         "PRIMARY" => ["id"],
895                         "uid_mid" => ["UNIQUE", "uid", "mid"],
896                         "mid" => ["mid"],
897                 ]
898         ],
899         "notification" => [
900                 "comment" => "notifications",
901                 "fields" => [
902                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
903                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
904                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
905                         "type" => ["type" => "tinyint unsigned", "comment" => ""],
906                         "actor-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Link to the contact table with uid=0 of the actor that caused the notification"],
907                         "target-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
908                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
909                         "created" => ["type" => "datetime", "comment" => ""],
910                         "seen" => ["type" => "boolean", "default" => "0", "comment" => "Seen on the desktop"],
911                         "dismissed" => ["type" => "boolean", "default" => "0", "comment" => "Dismissed via the API"],
912                 ],
913                 "indexes" => [
914                         "PRIMARY" => ["id"],
915                         "uid_vid_type_actor-id_target-uri-id" => ["UNIQUE", "uid", "vid", "type", "actor-id", "target-uri-id"],
916                         "vid" => ["vid"],
917                         "actor-id" => ["actor-id"],
918                         "target-uri-id" => ["target-uri-id"],
919                         "parent-uri-id" => ["parent-uri-id"],
920                         "seen_uid" => ["seen", "uid"],
921                 ]
922         ],
923         "notify" => [
924                 "comment" => "[Deprecated] User notifications",
925                 "fields" => [
926                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
927                         "type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
928                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
929                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
930                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
931                         "date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
932                         "msg" => ["type" => "mediumtext", "comment" => ""],
933                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
934                         "link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
935                         "iid" => ["type" => "int unsigned", "comment" => ""],
936                         "parent" => ["type" => "int unsigned", "comment" => ""],
937                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
938                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
939                         "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
940                         "verb" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
941                         "otype" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => ""],
942                         "name_cache" => ["type" => "tinytext", "comment" => "Cached bbcode parsing of name"],
943                         "msg_cache" => ["type" => "mediumtext", "comment" => "Cached bbcode parsing of msg"]
944                 ],
945                 "indexes" => [
946                         "PRIMARY" => ["id"],
947                         "seen_uid_date" => ["seen", "uid", "date"],
948                         "uid_date" => ["uid", "date"],
949                         "uid_type_link" => ["uid", "type", "link(190)"],
950                         "uri-id" => ["uri-id"],
951                         "parent-uri-id" => ["parent-uri-id"],
952                 ]
953         ],
954         "notify-threads" => [
955                 "comment" => "",
956                 "fields" => [
957                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
958                         "notify-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["notify" => "id"], "comment" => ""],
959                         "master-parent-item" => ["type" => "int unsigned", "comment" => "Deprecated"],
960                         "master-parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
961                         "parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
962                         "receiver-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"],
963                                 "comment" => "User id"],
964                 ],
965                 "indexes" => [
966                         "PRIMARY" => ["id"],
967                         "master-parent-uri-id" => ["master-parent-uri-id"],
968                         "receiver-uid" => ["receiver-uid"],
969                         "notify-id" => ["notify-id"],
970                 ]
971         ],
972         "oembed" => [
973                 "comment" => "cache for OEmbed queries",
974                 "fields" => [
975                         "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "page url"],
976                         "maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => "Maximum width passed to Oembed"],
977                         "content" => ["type" => "mediumtext", "comment" => "OEmbed data of the page"],
978                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
979                 ],
980                 "indexes" => [
981                         "PRIMARY" => ["url", "maxwidth"],
982                         "created" => ["created"],
983                 ]
984         ],
985         "openwebauth-token" => [
986                 "comment" => "Store OpenWebAuth token to verify contacts",
987                 "fields" => [
988                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
989                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id - currently unused"],
990                         "type" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Verify type"],
991                         "token" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A generated token"],
992                         "meta" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
993                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
994                 ],
995                 "indexes" => [
996                         "PRIMARY" => ["id"],
997                         "uid" => ["uid"],
998                 ]
999         ],
1000         "parsed_url" => [
1001                 "comment" => "cache for 'parse_url' queries",
1002                 "fields" => [
1003                         "url_hash" => ["type" => "binary(64)", "not null" => "1", "primary" => "1", "comment" => "page url hash"],
1004                         "guessing" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the 'guessing' mode active?"],
1005                         "oembed" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the data the result of oembed?"],
1006                         "url" => ["type" => "text", "not null" => "1", "comment" => "page url"],
1007                         "content" => ["type" => "mediumtext", "comment" => "page data"],
1008                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1009                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of expiration"],
1010                 ],
1011                 "indexes" => [
1012                         "PRIMARY" => ["url_hash", "guessing", "oembed"],
1013                         "created" => ["created"],
1014                         "expires" => ["expires"],
1015                 ]
1016         ],
1017         "pconfig" => [
1018                 "comment" => "personal (per user) configuration storage",
1019                 "fields" => [
1020                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Primary key"],
1021                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1022                         "cat" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "Category"],
1023                         "k" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "Key"],
1024                         "v" => ["type" => "mediumtext", "comment" => "Value"],
1025                 ],
1026                 "indexes" => [
1027                         "PRIMARY" => ["id"],
1028                         "uid_cat_k" => ["UNIQUE", "uid", "cat", "k"],
1029                 ]
1030         ],
1031         "photo" => [
1032                 "comment" => "photo storage",
1033                 "fields" => [
1034                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1035                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid", "on delete" => "restrict"], "comment" => "Owner User id"],
1036                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "contact.id"],
1037                         "guid" => ["type" => "char(16)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this photo"],
1038                         "resource-id" => ["type" => "char(32)", "not null" => "1", "default" => "", "comment" => ""],
1039                         "hash" => ["type" => "char(32)", "comment" => "hash value of the photo"],
1040                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation date"],
1041                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edited date"],
1042                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1043                         "desc" => ["type" => "text", "comment" => ""],
1044                         "album" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "The name of the album to which the photo belongs"],
1045                         "photo-type" => ["type" => "tinyint unsigned", "comment" => "User avatar, user banner, contact avatar, contact banner or default"],
1046                         "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1047                         "type" => ["type" => "varchar(30)", "not null" => "1", "default" => "image/jpeg"],
1048                         "height" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1049                         "width" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1050                         "datasize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1051                         "data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
1052                         "scale" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1053                         "profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1054                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
1055                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
1056                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
1057                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
1058                         "accessible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Make photo publicly accessible, ignoring permissions"],
1059                         "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
1060                         "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
1061                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1062                 ],
1063                 "indexes" => [
1064                         "PRIMARY" => ["id"],
1065                         "contactid" => ["contact-id"],
1066                         "uid_contactid" => ["uid", "contact-id"],
1067                         "uid_profile" => ["uid", "profile"],
1068                         "uid_album_scale_created" => ["uid", "album(32)", "scale", "created"],
1069                         "uid_album_resource-id_created" => ["uid", "album(32)", "resource-id", "created"],
1070                         "resource-id" => ["resource-id"],
1071                         "uid_photo-type" => ["uid", "photo-type"],
1072                 ]
1073         ],
1074         "post" => [
1075                 "comment" => "Structure for all posts",
1076                 "fields" => [
1077                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1078                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1079                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1080                         "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1081                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1082                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1083                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1084                         "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1085                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1086                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the owner of this item"],
1087                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of this item"],
1088                         "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1089                         "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1090                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1091                         "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1092                         "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1093                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1094                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"]
1095                 ],
1096                 "indexes" => [
1097                         "PRIMARY" => ["uri-id"],
1098                         "parent-uri-id" => ["parent-uri-id"],
1099                         "thr-parent-id" => ["thr-parent-id"],
1100                         "external-id" => ["external-id"],
1101                         "owner-id" => ["owner-id"],
1102                         "author-id" => ["author-id"],
1103                         "causer-id" => ["causer-id"],
1104                         "vid" => ["vid"],
1105                 ]
1106         ],
1107         "post-category" => [
1108                 "comment" => "post relation to categories",
1109                 "fields" => [
1110                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1",  "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1111                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1112                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1113                         "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1114                 ],
1115                 "indexes" => [
1116                         "PRIMARY" => ["uri-id", "uid", "type", "tid"],
1117                         "tid" => ["tid"],
1118                         "uid_uri-id" => ["uid", "uri-id"],
1119                 ]
1120         ],
1121         "post-collection" => [
1122                 "comment" => "Collection of posts",
1123                 "fields" => [
1124                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1125                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "0 - Featured"],
1126                 ],
1127                 "indexes" => [
1128                         "PRIMARY" => ["uri-id", "type"],
1129                         "type" => ["type"],
1130                 ]
1131         ],
1132         "post-content" => [
1133                 "comment" => "Content for all posts",
1134                 "fields" => [
1135                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1136                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "item title"],
1137                         "content-warning" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1138                         "body" => ["type" => "mediumtext", "comment" => "item body content"],
1139                         "raw-body" => ["type" => "mediumtext", "comment" => "Body without embedded media links"],
1140                         "location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "text location where this item originated"],
1141                         "coord" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "longitude/latitude pair representing location where this item originated"],
1142                         "language" => ["type" => "text", "comment" => "Language information about this post"],
1143                         "app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "application which generated this item"],
1144                         "rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1145                         "rendered-html" => ["type" => "mediumtext", "comment" => "item.body converted to html"],
1146                         "object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams object type"],
1147                         "object" => ["type" => "text", "comment" => "JSON encoded object structure unless it is an implied object (normal post)"],
1148                         "target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
1149                         "target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
1150                         "resource-id" => ["type" => "varchar(32)", "not null" => "1", "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"],
1151                         "plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
1152                 ],
1153                 "indexes" => [
1154                         "PRIMARY" => ["uri-id"],
1155                         "plink" => ["plink(191)"],
1156                         "resource-id" => ["resource-id"],
1157                         "title-content-warning-body" => ["FULLTEXT", "title", "content-warning", "body"],
1158                 ]
1159         ],
1160         "post-delivery" => [
1161                 "comment" => "Status of ActivityPub inboxes",
1162                 "fields" => [
1163                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1164                         "inbox-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
1165                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Delivering user"],
1166                         "created" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
1167                         "command" => ["type" => "varbinary(32)", "comment" => ""],
1168                 ],
1169                 "indexes" => [
1170                         "PRIMARY" => ["uri-id", "inbox-id"],
1171                         "inbox-id_created" => ["inbox-id", "created"],
1172                         "uid" => ["uid"],
1173                 ]
1174         ],
1175         "post-delivery-data" => [
1176                 "comment" => "Delivery data for items",
1177                 "fields" => [
1178                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1179                         "postopts" => ["type" => "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"],
1180                         "inform" => ["type" => "mediumtext", "comment" => "Additional receivers of the linked item"],
1181                         "queue_count" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Initial number of delivery recipients, used as item.delivery_queue_count"],
1182                         "queue_done" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries, used as item.delivery_queue_done"],
1183                         "queue_failed" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of unsuccessful deliveries, used as item.delivery_queue_failed"],
1184                         "activitypub" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via ActivityPub"],
1185                         "dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via DFRN"],
1186                         "legacy_dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via legacy DFRN"],
1187                         "diaspora" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via Diaspora"],
1188                         "ostatus" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via OStatus"],
1189                 ],
1190                 "indexes" => [
1191                         "PRIMARY" => ["uri-id"],
1192                 ]
1193         ],
1194         "post-link" => [
1195                 "comment" => "Post related external links",
1196                 "fields" => [
1197                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1198                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1199                         "url" => ["type" => "varbinary(511)", "not null" => "1", "comment" => "External URL"],
1200                         "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1201                 ],
1202                 "indexes" => [
1203                         "PRIMARY" => ["id"],
1204                         "uri-id-url" => ["UNIQUE", "uri-id", "url"],
1205                 ]
1206         ],
1207         "post-media" => [
1208                 "comment" => "Attached media",
1209                 "fields" => [
1210                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1211                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1212                         "url" => ["type" => "varbinary(511)", "not null" => "1", "comment" => "Media URL"],
1213                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Media type"],
1214                         "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1215                         "height" => ["type" => "smallint unsigned", "comment" => "Height of the media"],
1216                         "width" => ["type" => "smallint unsigned", "comment" => "Width of the media"],
1217                         "size" => ["type" => "int unsigned", "comment" => "Media size"],
1218                         "preview" => ["type" => "varbinary(255)", "comment" => "Preview URL"],
1219                         "preview-height" => ["type" => "smallint unsigned", "comment" => "Height of the preview picture"],
1220                         "preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
1221                         "description" => ["type" => "text", "comment" => ""],
1222                         "name" => ["type" => "varchar(255)", "comment" => "Name of the media"],
1223                         "author-url" => ["type" => "varbinary(255)", "comment" => "URL of the author of the media"],
1224                         "author-name" => ["type" => "varchar(255)", "comment" => "Name of the author of the media"],
1225                         "author-image" => ["type" => "varbinary(255)", "comment" => "Image of the author of the media"],
1226                         "publisher-url" => ["type" => "varbinary(255)", "comment" => "URL of the publisher of the media"],
1227                         "publisher-name" => ["type" => "varchar(255)", "comment" => "Name of the publisher of the media"],
1228                         "publisher-image" => ["type" => "varbinary(255)", "comment" => "Image of the publisher of the media"],
1229                 ],
1230                 "indexes" => [
1231                         "PRIMARY" => ["id"],
1232                         "uri-id-url" => ["UNIQUE", "uri-id", "url"],
1233                         "uri-id-id" => ["uri-id", "id"],
1234                 ]
1235         ],
1236         "post-question" => [
1237                 "comment" => "Question",
1238                 "fields" => [
1239                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1240                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1241                         "multiple" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Multiple choice"],
1242                         "voters" => ["type" => "int unsigned", "comment" => "Number of voters for this question"],
1243                         "end-time" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Question end time"],
1244                 ],
1245                 "indexes" => [
1246                         "PRIMARY" => ["id"],
1247                         "uri-id" => ["UNIQUE", "uri-id"],
1248                 ]
1249         ],
1250         "post-question-option" => [
1251                 "comment" => "Question option",
1252                 "fields" => [
1253                         "id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => "Id of the question"],
1254                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1255                         "name" => ["type" => "varchar(255)", "comment" => "Name of the option"],
1256                         "replies" => ["type" => "int unsigned", "comment" => "Number of replies for this question option"],
1257                 ],
1258                 "indexes" => [
1259                         "PRIMARY" => ["uri-id", "id"],
1260                 ]
1261         ],
1262         "post-tag" => [
1263                 "comment" => "post relation to tags",
1264                 "fields" => [
1265                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1266                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1267                         "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1268                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Contact id of the mentioned public contact"],
1269                 ],
1270                 "indexes" => [
1271                         "PRIMARY" => ["uri-id", "type", "tid", "cid"],
1272                         "tid" => ["tid"],
1273                         "cid" => ["cid"]
1274                 ]
1275         ],
1276         "post-thread" => [
1277                 "comment" => "Thread related data",
1278                 "fields" => [
1279                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1280                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1281                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1282                         "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1283                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1284                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1285                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1286                         "changed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date that something in the conversation changed, indicating clients should fetch the conversation again"],
1287                         "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1288                 ],
1289                 "indexes" => [
1290                         "PRIMARY" => ["uri-id"],
1291                         "owner-id" => ["owner-id"],
1292                         "author-id" => ["author-id"],
1293                         "causer-id" => ["causer-id"],
1294                         "received" => ["received"],
1295                         "commented" => ["commented"],
1296                 ]
1297         ],
1298         "post-user" => [
1299                 "comment" => "User specific post data",
1300                 "fields" => [
1301                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
1302                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1303                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1304                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1305                         "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1306                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1307                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1308                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1309                         "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1310                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1311                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the owner of this item"],
1312                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of this item"],
1313                         "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1314                         "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1315                         "post-reason" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Reason why the post arrived at the user"],
1316                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1317                         "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1318                         "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1319                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1320                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"],
1321                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1322                         "protocol" => ["type" => "tinyint unsigned", "comment" => "Protocol used to deliver the item for this user"],
1323                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1324                         "event-id" => ["type" => "int unsigned", "foreign" => ["event" => "id"], "comment" => "Used to link to the event.id"],
1325                         "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1326                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1327                         "notification-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1328                         "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1329                         "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1330                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1331                 ],
1332                 "indexes" => [
1333                         "PRIMARY" => ["id"],
1334                         "uid_uri-id" => ["UNIQUE", "uid", "uri-id"],
1335                         "uri-id" => ["uri-id"],
1336                         "parent-uri-id" => ["parent-uri-id"],
1337                         "thr-parent-id" => ["thr-parent-id"],
1338                         "external-id" => ["external-id"],
1339                         "owner-id" => ["owner-id"],
1340                         "author-id" => ["author-id"],
1341                         "causer-id" => ["causer-id"],
1342                         "vid" => ["vid"],
1343                         "contact-id" => ["contact-id"],
1344                         "event-id" => ["event-id"],
1345                         "psid" => ["psid"],
1346                         "author-id_uid" => ["author-id", "uid"],
1347                         "author-id_received" => ["author-id", "received"],
1348                         "parent-uri-id_uid" => ["parent-uri-id", "uid"],
1349                         "uid_contactid" => ["uid", "contact-id"],
1350                         "uid_unseen_contactid" => ["uid", "unseen", "contact-id"],
1351                         "uid_unseen" => ["uid", "unseen"],
1352                         "uid_hidden_uri-id" => ["uid", "hidden", "uri-id"],
1353                 ],
1354         ],
1355         "post-thread-user" => [
1356                 "comment" => "Thread related data per user",
1357                 "fields" => [
1358                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1359                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1360                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1361                         "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1362                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1363                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1364                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1365                         "changed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date that something in the conversation changed, indicating clients should fetch the conversation again"],
1366                         "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1367                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1368                         "pinned" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
1369                         "starred" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1370                         "ignored" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Ignore updates for this thread"],
1371                         "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1372                         "mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1373                         "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1374                         "forum_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
1375                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1376                         "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1377                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1378                         "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1379                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1380                         "post-user-id" => ["type" => "int unsigned", "foreign" => ["post-user" => "id"], "comment" => "Id of the post-user table"],
1381                 ],
1382                 "indexes" => [
1383                         "PRIMARY" => ["uid", "uri-id"],
1384                         "uri-id" => ["uri-id"],
1385                         "owner-id" => ["owner-id"],
1386                         "author-id" => ["author-id"],
1387                         "causer-id" => ["causer-id"],
1388                         "uid" => ["uid"],
1389                         "contact-id" => ["contact-id"],
1390                         "psid" => ["psid"],
1391                         "post-user-id" => ["post-user-id"],
1392                         "commented" => ["commented"],
1393                         "uid_received" => ["uid", "received"],
1394                         "uid_wall_received" => ["uid", "wall", "received"],
1395                         "uid_commented" => ["uid", "commented"],
1396                         "uid_starred" => ["uid", "starred"],
1397                         "uid_mention" => ["uid", "mention"],
1398                 ]
1399         ],
1400         "post-user-notification" => [
1401                 "comment" => "User post notifications",
1402                 "fields" => [
1403                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1404                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1405                         "notification-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1406                 ],
1407                 "indexes" => [
1408                         "PRIMARY" => ["uid", "uri-id"],
1409                         "uri-id" => ["uri-id"],
1410                 ],
1411         ],
1412         "process" => [
1413                 "comment" => "Currently running system processes",
1414                 "fields" => [
1415                         "pid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => "The ID of the process"],
1416                         "hostname" => ["type" => "varchar(32)", "not null" => "1", "primary" => "1", "comment" => "The name of the host the process is ran on"],
1417                         "command" => ["type" => "varbinary(32)", "not null" => "1", "default" => "", "comment" => ""],
1418                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1419                 ],
1420                 "indexes" => [
1421                         "PRIMARY" => ["pid", "hostname"],
1422                         "command" => ["command"],
1423                 ]
1424         ],
1425         "profile" => [
1426                 "comment" => "user profiles data",
1427                 "fields" => [
1428                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1429                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1430                         "profile-name" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1431                         "is-default" => ["type" => "boolean", "comment" => "Deprecated"],
1432                         "hide-friends" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide friend list from viewers of this profile"],
1433                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1434                         "pdesc" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1435                         "dob" => ["type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00", "comment" => "Day of birth"],
1436                         "address" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1437                         "locality" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1438                         "region" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1439                         "postal-code" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1440                         "country-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1441                         "hometown" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1442                         "gender" => ["type" => "varchar(32)", "comment" => "Deprecated"],
1443                         "marital" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1444                         "with" => ["type" => "text", "comment" => "Deprecated"],
1445                         "howlong" => ["type" => "datetime", "comment" => "Deprecated"],
1446                         "sexual" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1447                         "politic" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1448                         "religion" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1449                         "pub_keywords" => ["type" => "text", "comment" => ""],
1450                         "prv_keywords" => ["type" => "text", "comment" => ""],
1451                         "likes" => ["type" => "text", "comment" => "Deprecated"],
1452                         "dislikes" => ["type" => "text", "comment" => "Deprecated"],
1453                         "about" => ["type" => "text", "comment" => "Profile description"],
1454                         "summary" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1455                         "music" => ["type" => "text", "comment" => "Deprecated"],
1456                         "book" => ["type" => "text", "comment" => "Deprecated"],
1457                         "tv" => ["type" => "text", "comment" => "Deprecated"],
1458                         "film" => ["type" => "text", "comment" => "Deprecated"],
1459                         "interest" => ["type" => "text", "comment" => "Deprecated"],
1460                         "romance" => ["type" => "text", "comment" => "Deprecated"],
1461                         "work" => ["type" => "text", "comment" => "Deprecated"],
1462                         "education" => ["type" => "text", "comment" => "Deprecated"],
1463                         "contact" => ["type" => "text", "comment" => "Deprecated"],
1464                         "homepage" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1465                         "xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
1466                         "matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
1467                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1468                         "thumb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1469                         "publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish default profile in local directory"],
1470                         "net-publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish profile in global directory"],
1471                 ],
1472                 "indexes" => [
1473                         "PRIMARY" => ["id"],
1474                         "uid_is-default" => ["uid", "is-default"],
1475                         "pub_keywords" => ["FULLTEXT", "pub_keywords"],
1476                 ]
1477         ],
1478         "profile_field" => [
1479                 "comment" => "Custom profile fields",
1480                 "fields" => [
1481                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1482                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner user id"],
1483                         "order" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "1", "comment" => "Field ordering per user"],
1484                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this profile field - 0 = public"],
1485                         "label" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Label of the field"],
1486                         "value" => ["type" => "text", "comment" => "Value of the field"],
1487                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
1488                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
1489                 ],
1490                 "indexes" => [
1491                         "PRIMARY" => ["id"],
1492                         "uid" => ["uid"],
1493                         "order" => ["order"],
1494                         "psid" => ["psid"],
1495                 ]
1496         ],
1497         "push_subscriber" => [
1498                 "comment" => "Used for OStatus: Contains feed subscribers",
1499                 "fields" => [
1500                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1501                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1502                         "callback_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1503                         "topic" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1504                         "nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1505                         "push" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
1506                         "last_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last successful trial"],
1507                         "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
1508                         "renewed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last subscription renewal"],
1509                         "secret" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1510                 ],
1511                 "indexes" => [
1512                         "PRIMARY" => ["id"],
1513                         "next_try" => ["next_try"],
1514                         "uid" => ["uid"]
1515                 ]
1516         ],
1517         "register" => [
1518                 "comment" => "registrations requiring admin approval",
1519                 "fields" => [
1520                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1521                         "hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1522                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1523                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1524                         "password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1525                         "language" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
1526                         "note" => ["type" => "text", "comment" => ""],
1527                 ],
1528                 "indexes" => [
1529                         "PRIMARY" => ["id"],
1530                         "uid" => ["uid"],
1531                 ]
1532         ],
1533         "search" => [
1534                 "comment" => "",
1535                 "fields" => [
1536                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1537                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1538                         "term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1539                 ],
1540                 "indexes" => [
1541                         "PRIMARY" => ["id"],
1542                         "uid_term" => ["uid", "term(64)"],
1543                         "term" => ["term(64)"]
1544                 ]
1545         ],
1546         "session" => [
1547                 "comment" => "web session storage",
1548                 "fields" => [
1549                         "id" => ["type" => "bigint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1550                         "sid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
1551                         "data" => ["type" => "text", "comment" => ""],
1552                         "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1553                 ],
1554                 "indexes" => [
1555                         "PRIMARY" => ["id"],
1556                         "sid" => ["sid(64)"],
1557                         "expire" => ["expire"],
1558                 ]
1559         ],
1560         "storage" => [
1561                 "comment" => "Data stored by Database storage backend",
1562                 "fields" => [
1563                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1564                         "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"]
1565                 ],
1566                 "indexes" => [
1567                         "PRIMARY" => ["id"]
1568                 ]
1569         ],
1570         "subscription" => [
1571                 "comment" => "Push Subscription for the API",
1572                 "fields" => [
1573                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1574                         "application-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["application" => "id"], "comment" => ""],
1575                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1576                         "endpoint" => ["type" => "varchar(511)", "comment" => "Endpoint URL"],
1577                         "pubkey" => ["type" => "varchar(127)", "comment" => "User agent public key"],
1578                         "secret" => ["type" => "varchar(32)", "comment" => "Auth secret"],
1579                         "follow" => ["type" => "boolean", "comment" => ""],
1580                         "favourite" => ["type" => "boolean", "comment" => ""],
1581                         "reblog" => ["type" => "boolean", "comment" => ""],
1582                         "mention" => ["type" => "boolean", "comment" => ""],
1583                         "poll" => ["type" => "boolean", "comment" => ""],
1584                         "follow_request" => ["type" => "boolean", "comment" => ""],
1585                         "status" => ["type" => "boolean", "comment" => ""],
1586                 ],
1587                 "indexes" => [
1588                         "PRIMARY" => ["id"],
1589                         "application-id_uid" => ["UNIQUE", "application-id", "uid"],
1590                         "uid_application-id" => ["uid", "application-id"],
1591                 ]
1592         ],
1593         "userd" => [
1594                 "comment" => "Deleted usernames",
1595                 "fields" => [
1596                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1597                         "username" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
1598                 ],
1599                 "indexes" => [
1600                         "PRIMARY" => ["id"],
1601                         "username" => ["username(32)"],
1602                 ]
1603         ],
1604         "user-contact" => [
1605                 "comment" => "User specific public contact data",
1606                 "fields" => [
1607                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["contact" => "id"], "comment" => "Contact id of the linked public contact"],
1608                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1609                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
1610                         "blocked" => ["type" => "boolean", "comment" => "Contact is completely blocked for this user"],
1611                         "ignored" => ["type" => "boolean", "comment" => "Posts from this contact are ignored"],
1612                         "collapsed" => ["type" => "boolean", "comment" => "Posts from this contact are collapsed"],
1613                         "hidden" => ["type" => "boolean", "comment" => "This contact is hidden from the others"],
1614                         "is-blocked" => ["type" => "boolean", "comment" => "User is blocked by this contact"],
1615                         "pending" => ["type" => "boolean", "comment" => ""],
1616                         "rel" => ["type" => "tinyint unsigned", "comment" => "The kind of the relation between the user and the contact"],
1617                         "info" => ["type" => "mediumtext", "comment" => ""],
1618                         "notify_new_posts" => ["type" => "boolean", "comment" => ""],
1619                         "remote_self" => ["type" => "boolean", "comment" => ""],
1620                         "fetch_further_information" => ["type" => "tinyint unsigned", "comment" => ""],
1621                         "ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
1622                         "subhub" => ["type" => "boolean", "comment" => ""],
1623                         "hub-verify" => ["type" => "varchar(255)", "comment" => ""],
1624                         "protocol" => ["type" => "char(4)", "comment" => "Protocol of the contact"],
1625                         "rating" => ["type" => "tinyint", "comment" => "Automatically detected feed poll frequency"],
1626                         "priority" => ["type" => "tinyint unsigned", "comment" => "Feed poll priority"],
1627                 ],
1628                 "indexes" => [
1629                         "PRIMARY" => ["uid", "cid"],
1630                         "cid" => ["cid"],
1631                         "uri-id_uid" => ["UNIQUE", "uri-id", "uid"],
1632                 ]
1633         ],
1634         "worker-ipc" => [
1635                 "comment" => "Inter process communication between the frontend and the worker",
1636                 "fields" => [
1637                         "key" => ["type" => "int", "not null" => "1", "primary" => "1", "comment" => ""],
1638                         "jobs" => ["type" => "boolean", "comment" => "Flag for outstanding jobs"],
1639                 ],
1640                 "indexes" => [
1641                         "PRIMARY" => ["key"],
1642                 ],
1643                 "engine" => "MEMORY",
1644         ],
1645 ];