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