]> git.mxchange.org Git - friendica.git/blob - static/dbstructure.config.php
Merge pull request #12638 from annando/collapse
[friendica.git] / static / dbstructure.config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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', 1510);
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         "contact-relation" => [
557                 "comment" => "Contact relations",
558                 "fields" => [
559                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "contact the related contact had interacted with"],
560                         "relation-cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "related contact who had interacted with the contact"],
561                         "last-interaction" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last interaction"],
562                         "follow-updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last update of the contact relationship"],
563                         "follows" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
564                 ],
565                 "indexes" => [
566                         "PRIMARY" => ["cid", "relation-cid"],
567                         "relation-cid" => ["relation-cid"],
568                 ]
569         ],
570         "conv" => [
571                 "comment" => "private messages",
572                 "fields" => [
573                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
574                         "guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this conversation"],
575                         "recips" => ["type" => "text", "comment" => "sender_handle;recipient_handle"],
576                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
577                         "creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "handle of creator"],
578                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation timestamp"],
579                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "edited timestamp"],
580                         "subject" => ["type" => "text", "comment" => "subject of initial message"],
581                 ],
582                 "indexes" => [
583                         "PRIMARY" => ["id"],
584                         "uid" => ["uid"],
585                 ]
586         ],
587         "workerqueue" => [
588                 "comment" => "Background tasks queue entries",
589                 "fields" => [
590                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
591                         "command" => ["type" => "varchar(100)", "comment" => "Task command"],
592                         "parameter" => ["type" => "mediumtext", "comment" => "Task parameter"],
593                         "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Task priority"],
594                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date"],
595                         "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
596                         "executed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Execution date"],
597                         "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
598                         "retrial" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
599                         "done" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marked 1 when the task was done - will be deleted later"],
600                 ],
601                 "indexes" => [
602                         "PRIMARY" => ["id"],
603                         "command" => ["command"],
604                         "done_command_parameter" => ["done", "command", "parameter(64)"],
605                         "done_executed" => ["done", "executed"],
606                         "done_priority_retrial_created" => ["done", "priority", "retrial", "created"],
607                         "done_priority_next_try" => ["done", "priority", "next_try"],
608                         "done_pid_next_try" => ["done", "pid", "next_try"],
609                         "done_pid_retrial" => ["done", "pid", "retrial"],
610                         "done_pid_priority_created" => ["done", "pid", "priority", "created"]
611                 ]
612         ],
613         "delayed-post" => [
614                 "comment" => "Posts that are about to be distributed at a later time",
615                 "fields" => [
616                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
617                         "uri" => ["type" => "varbinary(383)", "comment" => "URI of the post that will be distributed later"],
618                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
619                         "delayed" => ["type" => "datetime", "comment" => "delay time"],
620                         "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
621                 ],
622                 "indexes" => [
623                         "PRIMARY" => ["id"],
624                         "uid_uri" => ["UNIQUE", "uid", "uri(190)"],
625                         "wid" => ["wid"],
626                 ]
627         ],
628         "delivery-queue" => [
629                 "comment" => "Delivery data for posts for the batch processing",
630                 "fields" => [
631                         "gsid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Target server"],
632                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Delivered post"],
633                         "created" => ["type" => "datetime", "comment" => ""],
634                         "command" => ["type" => "varbinary(32)", "comment" => ""],
635                         "cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Target contact"],
636                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Delivering user"],
637                         "failed" => ["type" => "tinyint", "default" => 0, "comment" => "Number of times the delivery has failed"],
638                 ],
639                 "indexes" => [
640                         "PRIMARY" => ["uri-id", "gsid"],
641                         "gsid_created" => ["gsid", "created"],
642                         "uid" => ["uid"],
643                         "cid" => ["cid"],
644                 ]
645         ],
646         "diaspora-contact" => [
647                 "comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
648                 "fields" => [
649                         "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"],
650                         "addr" => ["type" => "varchar(255)", "comment" => ""],
651                         "alias" => ["type" => "varchar(255)", "comment" => ""],
652                         "nick" => ["type" => "varchar(255)", "comment" => ""],
653                         "name" => ["type" => "varchar(255)", "comment" => ""],
654                         "given-name" => ["type" => "varchar(255)", "comment" => ""],
655                         "family-name" => ["type" => "varchar(255)", "comment" => ""],
656                         "photo" => ["type" => "varchar(255)", "comment" => ""],
657                         "photo-medium" => ["type" => "varchar(255)", "comment" => ""],
658                         "photo-small" => ["type" => "varchar(255)", "comment" => ""],
659                         "batch" => ["type" => "varchar(255)", "comment" => ""],
660                         "notify" => ["type" => "varchar(255)", "comment" => ""],
661                         "poll" => ["type" => "varchar(255)", "comment" => ""],
662                         "subscribe" => ["type" => "varchar(255)", "comment" => ""],
663                         "searchable" => ["type" => "boolean", "comment" => ""],
664                         "pubkey" => ["type" => "text", "comment" => ""],
665                         "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
666                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
667                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
668                         "interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interactes with"],
669                         "interacted_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts that interacted with this contact"],
670                         "post_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of posts and comments"],
671                 ],
672                 "indexes" => [
673                         "PRIMARY" => ["uri-id"],
674                         "addr" => ["UNIQUE", "addr"],
675                         "alias" => ["alias"],
676                         "gsid" => ["gsid"],
677                 ]
678         ],
679         "diaspora-interaction" => [
680                 "comment" => "Signed Diaspora Interaction",
681                 "fields" => [
682                         "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"],
683                         "interaction" => ["type" => "mediumtext", "comment" => "The Diaspora interaction"]
684                 ],
685                 "indexes" => [
686                         "PRIMARY" => ["uri-id"]
687                 ]
688         ],
689         "endpoint" => [
690                 "comment" => "ActivityPub endpoints - used in the ActivityPub implementation",
691                 "fields" => [
692                         "url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
693                         "type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
694                         "owner-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
695                 ],
696                 "indexes" => [
697                         "PRIMARY" => ["url"],
698                         "owner-uri-id_type" => ["UNIQUE", "owner-uri-id", "type"],
699                 ]
700         ],
701         "event" => [
702                 "comment" => "Events",
703                 "fields" => [
704                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
705                         "guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
706                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
707                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
708                         "uri" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
709                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the event uri"],
710                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
711                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
712                         "start" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event start time"],
713                         "finish" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event end time"],
714                         "summary" => ["type" => "text", "comment" => "short description or title of the event"],
715                         "desc" => ["type" => "text", "comment" => "event description"],
716                         "location" => ["type" => "text", "comment" => "event location"],
717                         "type" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "comment" => "event or birthday"],
718                         "nofinish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if event does have no end this is 1"],
719                         "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "0 or 1"],
720                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
721                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
722                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
723                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
724                 ],
725                 "indexes" => [
726                         "PRIMARY" => ["id"],
727                         "uid_start" => ["uid", "start"],
728                         "cid" => ["cid"],
729                         "uri-id" => ["uri-id"],
730                 ]
731         ],
732         "fetch-entry" => [
733                 "comment" => "",
734                 "fields" => [
735                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
736                         "url" => ["type" => "varbinary(383)", "comment" => "url that awaiting to be fetched"],
737                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of the fetch request"],
738                         "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],               ],
739                 "indexes" => [
740                         "PRIMARY" => ["id"],
741                         "url" => ["UNIQUE", "url"],
742                         "created" => ["created"],
743                         "wid" => ["wid"],
744                 ]
745         ],
746         "fsuggest" => [
747                 "comment" => "friend suggestion stuff",
748                 "fields" => [
749                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
750                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
751                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
752                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
753                         "url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
754                         "request" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
755                         "photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
756                         "note" => ["type" => "text", "comment" => ""],
757                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
758                 ],
759                 "indexes" => [
760                         "PRIMARY" => ["id"],
761                         "cid" => ["cid"],
762                         "uid" => ["uid"],
763                 ]
764         ],
765         "group" => [
766                 "comment" => "privacy groups, group info",
767                 "fields" => [
768                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
769                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
770                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the member list is not private"],
771                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the group has been deleted"],
772                         "cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Contact id of forum. When this field is filled then the members are synced automatically."],
773                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "human readable name of group"],
774                 ],
775                 "indexes" => [
776                         "PRIMARY" => ["id"],
777                         "uid" => ["uid"],
778                         "cid" => ["cid"],
779                 ]
780         ],
781         "group_member" => [
782                 "comment" => "privacy groups, member info",
783                 "fields" => [
784                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
785                         "gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["group" => "id"], "comment" => "groups.id of the associated group"],
786                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id of the member assigned to the associated group"],
787                 ],
788                 "indexes" => [
789                         "PRIMARY" => ["id"],
790                         "contactid" => ["contact-id"],
791                         "gid_contactid" => ["UNIQUE", "gid", "contact-id"],
792                 ]
793         ],
794         "gserver-tag" => [
795                 "comment" => "Tags that the server has subscribed",
796                 "fields" => [
797                         "gserver-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["gserver" => "id"], "primary" => "1",
798                                 "comment" => "The id of the gserver"],
799                         "tag" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "primary" => "1", "comment" => "Tag that the server has subscribed"],
800                 ],
801                 "indexes" => [
802                         "PRIMARY" => ["gserver-id", "tag"],
803                         "tag" => ["tag"],
804                 ]
805         ],
806         "hook" => [
807                 "comment" => "addon hook registry",
808                 "fields" => [
809                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
810                         "hook" => ["type" => "varbinary(100)", "not null" => "1", "default" => "", "comment" => "name of hook"],
811                         "file" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "relative filename of hook handler"],
812                         "function" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "function name of hook handler"],
813                         "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"],
814                 ],
815                 "indexes" => [
816                         "PRIMARY" => ["id"],
817                         "priority" => ["priority"],
818                         "hook_file_function" => ["UNIQUE", "hook", "file", "function"],
819                 ]
820         ],
821         "inbox-entry" => [
822                 "comment" => "Incoming activity",
823                 "fields" => [
824                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
825                         "activity-id" => ["type" => "varbinary(383)", "comment" => "id of the incoming activity"],
826                         "object-id" => ["type" => "varbinary(383)", "comment" => ""],
827                         "in-reply-to-id" => ["type" => "varbinary(383)", "comment" => ""],
828                         "conversation" => ["type" => "varbinary(383)", "comment" => ""],
829                         "type" => ["type" => "varchar(64)", "comment" => "Type of the activity"],
830                         "object-type" => ["type" => "varchar(64)", "comment" => "Type of the object activity"],
831                         "object-object-type" => ["type" => "varchar(64)", "comment" => "Type of the object's object activity"],
832                         "received" => ["type" => "datetime", "comment" => "Receiving date"],
833                         "activity" => ["type" => "mediumtext", "comment" => "The JSON activity"],
834                         "signer" => ["type" => "varchar(255)", "comment" => ""],
835                         "push" => ["type" => "boolean", "comment" => "Is the entry pushed or have pulled it?"],
836                         "trust" => ["type" => "boolean", "comment" => "Do we trust this entry?"],
837                         "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],               ],
838                 "indexes" => [
839                         "PRIMARY" => ["id"],
840                         "activity-id" => ["UNIQUE", "activity-id"],
841                         "object-id" => ["object-id"],
842                         "received" => ["received"],
843                         "wid" => ["wid"],
844                 ]
845         ],
846         "inbox-entry-receiver" => [
847                 "comment" => "Receiver for the incoming activity",
848                 "fields" => [
849                         "queue-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["inbox-entry" => "id"], "comment" => ""],
850                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
851                 ],
852                 "indexes" => [
853                         "PRIMARY" => ["queue-id", "uid"],
854                         "uid" => ["uid"],
855                 ]
856         ],
857         "inbox-status" => [
858                 "comment" => "Status of ActivityPub inboxes",
859                 "fields" => [
860                         "url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "URL of the inbox"],
861                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
862                         "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "ID of the related server"],
863                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of this entry"],
864                         "success" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful delivery"],
865                         "failure" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last failed delivery"],
866                         "previous" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Previous delivery date"],
867                         "archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is the inbox archived?"],
868                         "shared" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is it a shared inbox?"]
869                 ],
870                 "indexes" => [
871                         "PRIMARY" => ["url"],
872                         "uri-id" => ["uri-id"],
873                         "gsid" => ["gsid"],
874                 ]
875         ],
876         "intro" => [
877                 "comment" => "",
878                 "fields" => [
879                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
880                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
881                         "fid" => ["type" => "int unsigned", "comment" => "deprecated"],
882                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
883                         "suggest-cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Suggested contact"],
884                         "knowyou" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
885                         "duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
886                         "note" => ["type" => "text", "comment" => ""],
887                         "hash" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
888                         "datetime" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
889                         "blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
890                         "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
891                 ],
892                 "indexes" => [
893                         "PRIMARY" => ["id"],
894                         "contact-id" => ["contact-id"],
895                         "suggest-cid" => ["suggest-cid"],
896                         "uid" => ["uid"],
897                 ]
898         ],
899         "key-value" => [
900                 "comment" => "A key value storage",
901                 "fields" => [
902                         "k" => ["type" => "varbinary(50)", "not null" => "1", "primary" => "1", "comment" => ""],
903                         "v" => ["type" => "mediumtext", "comment" => ""],
904                         "updated_at" => ["type" => "int unsigned", "not null" => "1", "comment" => "timestamp of the last update"],
905                 ],
906                 "indexes" => [
907                         "PRIMARY" => ["k"],
908                 ],
909         ],
910         "locks" => [
911                 "comment" => "",
912                 "fields" => [
913                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
914                         "name" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => ""],
915                         "locked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
916                         "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process ID"],
917                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
918                 ],
919                 "indexes" => [
920                         "PRIMARY" => ["id"],
921                         "name_expires" => ["name", "expires"]
922                 ]
923         ],
924         "mail" => [
925                 "comment" => "private messages",
926                 "fields" => [
927                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
928                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
929                         "guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
930                         "from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
931                         "from-photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
932                         "from-url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
933                         "contact-id" => ["type" => "varbinary(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
934                         "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"],
935                         "convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],
936                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
937                         "body" => ["type" => "mediumtext", "comment" => ""],
938                         "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if message visited it is 1"],
939                         "reply" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
940                         "replied" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
941                         "unknown" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if sender not in the contact table this is 1"],
942                         "uri" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
943                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related mail"],
944                         "parent-uri" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
945                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related mail"],
946                         "thr-parent" => ["type" => "varbinary(383)", "comment" => ""],
947                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
948                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time of the private message"],
949                 ],
950                 "indexes" => [
951                         "PRIMARY" => ["id"],
952                         "uid_seen" => ["uid", "seen"],
953                         "convid" => ["convid"],
954                         "uri" => ["uri(64)"],
955                         "parent-uri" => ["parent-uri(64)"],
956                         "contactid" => ["contact-id(32)"],
957                         "author-id" => ["author-id"],
958                         "uri-id" => ["uri-id"],
959                         "parent-uri-id" => ["parent-uri-id"],
960                         "thr-parent-id" => ["thr-parent-id"],
961                 ]
962         ],
963         "mailacct" => [
964                 "comment" => "Mail account data for fetching mails",
965                 "fields" => [
966                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
967                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
968                         "server" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
969                         "port" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
970                         "ssltype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
971                         "mailbox" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
972                         "user" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
973                         "pass" => ["type" => "text", "comment" => ""],
974                         "reply_to" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
975                         "action" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
976                         "movetofolder" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
977                         "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
978                         "last_check" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
979                 ],
980                 "indexes" => [
981                         "PRIMARY" => ["id"],
982                         "uid" => ["uid"],
983                 ]
984         ],
985         "manage" => [
986                 "comment" => "table of accounts that can manage each other",
987                 "fields" => [
988                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
989                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
990                         "mid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
991                 ],
992                 "indexes" => [
993                         "PRIMARY" => ["id"],
994                         "uid_mid" => ["UNIQUE", "uid", "mid"],
995                         "mid" => ["mid"],
996                 ]
997         ],
998         "notification" => [
999                 "comment" => "notifications",
1000                 "fields" => [
1001                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1002                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1003                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1004                         "type" => ["type" => "smallint unsigned", "comment" => ""],
1005                         "actor-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Link to the contact table with uid=0 of the actor that caused the notification"],
1006                         "target-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
1007                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
1008                         "created" => ["type" => "datetime", "comment" => ""],
1009                         "seen" => ["type" => "boolean", "default" => "0", "comment" => "Seen on the desktop"],
1010                         "dismissed" => ["type" => "boolean", "default" => "0", "comment" => "Dismissed via the API"],
1011                 ],
1012                 "indexes" => [
1013                         "PRIMARY" => ["id"],
1014                         "uid_vid_type_actor-id_target-uri-id" => ["UNIQUE", "uid", "vid", "type", "actor-id", "target-uri-id"],
1015                         "vid" => ["vid"],
1016                         "actor-id" => ["actor-id"],
1017                         "target-uri-id" => ["target-uri-id"],
1018                         "parent-uri-id" => ["parent-uri-id"],
1019                         "seen_uid" => ["seen", "uid"],
1020                         "uid_type_parent-uri-id_actor-id" => ["uid", "type", "parent-uri-id", "actor-id"],
1021                 ]
1022         ],
1023         "notify" => [
1024                 "comment" => "[Deprecated] User notifications",
1025                 "fields" => [
1026                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1027                         "type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1028                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1029                         "url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
1030                         "photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
1031                         "date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1032                         "msg" => ["type" => "mediumtext", "comment" => ""],
1033                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1034                         "link" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
1035                         "iid" => ["type" => "int unsigned", "comment" => ""],
1036                         "parent" => ["type" => "int unsigned", "comment" => ""],
1037                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
1038                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
1039                         "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1040                         "verb" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
1041                         "otype" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => ""],
1042                         "name_cache" => ["type" => "tinytext", "comment" => "Cached bbcode parsing of name"],
1043                         "msg_cache" => ["type" => "mediumtext", "comment" => "Cached bbcode parsing of msg"]
1044                 ],
1045                 "indexes" => [
1046                         "PRIMARY" => ["id"],
1047                         "seen_uid_date" => ["seen", "uid", "date"],
1048                         "uid_date" => ["uid", "date"],
1049                         "uid_type_link" => ["uid", "type", "link(190)"],
1050                         "uri-id" => ["uri-id"],
1051                         "parent-uri-id" => ["parent-uri-id"],
1052                 ]
1053         ],
1054         "notify-threads" => [
1055                 "comment" => "",
1056                 "fields" => [
1057                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1058                         "notify-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["notify" => "id"], "comment" => ""],
1059                         "master-parent-item" => ["type" => "int unsigned", "comment" => "Deprecated"],
1060                         "master-parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
1061                         "parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1062                         "receiver-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"],
1063                                 "comment" => "User id"],
1064                 ],
1065                 "indexes" => [
1066                         "PRIMARY" => ["id"],
1067                         "master-parent-uri-id" => ["master-parent-uri-id"],
1068                         "receiver-uid" => ["receiver-uid"],
1069                         "notify-id" => ["notify-id"],
1070                 ]
1071         ],
1072         "oembed" => [
1073                 "comment" => "cache for OEmbed queries",
1074                 "fields" => [
1075                         "url" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "page url"],
1076                         "maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => "Maximum width passed to Oembed"],
1077                         "content" => ["type" => "mediumtext", "comment" => "OEmbed data of the page"],
1078                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1079                 ],
1080                 "indexes" => [
1081                         "PRIMARY" => ["url", "maxwidth"],
1082                         "created" => ["created"],
1083                 ]
1084         ],
1085         "openwebauth-token" => [
1086                 "comment" => "Store OpenWebAuth token to verify contacts",
1087                 "fields" => [
1088                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1089                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id - currently unused"],
1090                         "type" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Verify type"],
1091                         "token" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A generated token"],
1092                         "meta" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1093                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1094                 ],
1095                 "indexes" => [
1096                         "PRIMARY" => ["id"],
1097                         "uid" => ["uid"],
1098                 ]
1099         ],
1100         "parsed_url" => [
1101                 "comment" => "cache for 'parse_url' queries",
1102                 "fields" => [
1103                         "url_hash" => ["type" => "binary(64)", "not null" => "1", "primary" => "1", "comment" => "page url hash"],
1104                         "guessing" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the 'guessing' mode active?"],
1105                         "oembed" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the data the result of oembed?"],
1106                         "url" => ["type" => "text", "not null" => "1", "comment" => "page url"],
1107                         "content" => ["type" => "mediumtext", "comment" => "page data"],
1108                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1109                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of expiration"],
1110                 ],
1111                 "indexes" => [
1112                         "PRIMARY" => ["url_hash", "guessing", "oembed"],
1113                         "created" => ["created"],
1114                         "expires" => ["expires"],
1115                 ]
1116         ],
1117         "pconfig" => [
1118                 "comment" => "personal (per user) configuration storage",
1119                 "fields" => [
1120                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Primary key"],
1121                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1122                         "cat" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "Category"],
1123                         "k" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "Key"],
1124                         "v" => ["type" => "mediumtext", "comment" => "Value"],
1125                 ],
1126                 "indexes" => [
1127                         "PRIMARY" => ["id"],
1128                         "uid_cat_k" => ["UNIQUE", "uid", "cat", "k"],
1129                 ]
1130         ],
1131         "photo" => [
1132                 "comment" => "photo storage",
1133                 "fields" => [
1134                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1135                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid", "on delete" => "restrict"], "comment" => "Owner User id"],
1136                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "contact.id"],
1137                         "guid" => ["type" => "char(16)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this photo"],
1138                         "resource-id" => ["type" => "char(32)", "not null" => "1", "default" => "", "comment" => ""],
1139                         "hash" => ["type" => "char(32)", "comment" => "hash value of the photo"],
1140                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation date"],
1141                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edited date"],
1142                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1143                         "desc" => ["type" => "text", "comment" => ""],
1144                         "album" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "The name of the album to which the photo belongs"],
1145                         "photo-type" => ["type" => "tinyint unsigned", "comment" => "User avatar, user banner, contact avatar, contact banner or default"],
1146                         "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1147                         "type" => ["type" => "varchar(30)", "not null" => "1", "default" => "image/jpeg"],
1148                         "height" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1149                         "width" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1150                         "datasize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1151                         "blurhash" => ["type" => "varbinary(255)", "comment" => "BlurHash representation of the photo"],
1152                         "data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
1153                         "scale" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1154                         "profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1155                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
1156                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
1157                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
1158                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
1159                         "accessible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Make photo publicly accessible, ignoring permissions"],
1160                         "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
1161                         "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
1162                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1163                 ],
1164                 "indexes" => [
1165                         "PRIMARY" => ["id"],
1166                         "contactid" => ["contact-id"],
1167                         "uid_contactid" => ["uid", "contact-id"],
1168                         "uid_profile" => ["uid", "profile"],
1169                         "uid_album_scale_created" => ["uid", "album(32)", "scale", "created"],
1170                         "uid_album_resource-id_created" => ["uid", "album(32)", "resource-id", "created"],
1171                         "resource-id" => ["resource-id"],
1172                         "uid_photo-type" => ["uid", "photo-type"],
1173                 ]
1174         ],
1175         "post" => [
1176                 "comment" => "Structure for all posts",
1177                 "fields" => [
1178                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1179                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1180                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1181                         "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1182                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1183                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1184                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1185                         "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1186                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1187                         "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"],
1188                         "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"],
1189                         "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"],
1190                         "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1191                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1192                         "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1193                         "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1194                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1195                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"]
1196                 ],
1197                 "indexes" => [
1198                         "PRIMARY" => ["uri-id"],
1199                         "parent-uri-id" => ["parent-uri-id"],
1200                         "thr-parent-id" => ["thr-parent-id"],
1201                         "external-id" => ["external-id"],
1202                         "owner-id" => ["owner-id"],
1203                         "author-id" => ["author-id"],
1204                         "causer-id" => ["causer-id"],
1205                         "vid" => ["vid"],
1206                 ]
1207         ],
1208         "post-activity" => [
1209                 "comment" => "Original remote activity",
1210                 "fields" => [
1211                         "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"],
1212                         "activity" => ["type" => "mediumtext", "comment" => "Original activity"],
1213                         "received" => ["type" => "datetime", "comment" => ""],
1214                 ],
1215                 "indexes" => [
1216                         "PRIMARY" => ["uri-id"],
1217                 ]
1218         ],
1219         "post-category" => [
1220                 "comment" => "post relation to categories",
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                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1224                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1225                         "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1226                 ],
1227                 "indexes" => [
1228                         "PRIMARY" => ["uri-id", "uid", "type", "tid"],
1229                         "tid" => ["tid"],
1230                         "uid_uri-id" => ["uid", "uri-id"],
1231                 ]
1232         ],
1233         "post-collection" => [
1234                 "comment" => "Collection of posts",
1235                 "fields" => [
1236                         "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"],
1237                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "0 - Featured"],
1238                         "author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Author of the featured post"],
1239                 ],
1240                 "indexes" => [
1241                         "PRIMARY" => ["uri-id", "type"],
1242                         "type" => ["type"],
1243                         "author-id" => ["author-id"],
1244                 ]
1245         ],
1246         "post-content" => [
1247                 "comment" => "Content for all posts",
1248                 "fields" => [
1249                         "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"],
1250                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "item title"],
1251                         "content-warning" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1252                         "body" => ["type" => "mediumtext", "comment" => "item body content"],
1253                         "raw-body" => ["type" => "mediumtext", "comment" => "Body without embedded media links"],
1254                         "quote-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the quoted uri"],
1255                         "location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "text location where this item originated"],
1256                         "coord" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "longitude/latitude pair representing location where this item originated"],
1257                         "language" => ["type" => "text", "comment" => "Language information about this post"],
1258                         "app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "application which generated this item"],
1259                         "rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1260                         "rendered-html" => ["type" => "mediumtext", "comment" => "item.body converted to html"],
1261                         "object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams object type"],
1262                         "object" => ["type" => "text", "comment" => "JSON encoded object structure unless it is an implied object (normal post)"],
1263                         "target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
1264                         "target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
1265                         "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"],
1266                         "plink" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
1267                 ],
1268                 "indexes" => [
1269                         "PRIMARY" => ["uri-id"],
1270                         "plink" => ["plink(191)"],
1271                         "resource-id" => ["resource-id"],
1272                         "title-content-warning-body" => ["FULLTEXT", "title", "content-warning", "body"],
1273                         "quote-uri-id" => ["quote-uri-id"],
1274                 ]
1275         ],
1276         "post-delivery" => [
1277                 "comment" => "Delivery data for posts for the batch processing",
1278                 "fields" => [
1279                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1280                         "inbox-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
1281                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Delivering user"],
1282                         "created" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
1283                         "command" => ["type" => "varbinary(32)", "comment" => ""],
1284                         "failed" => ["type" => "tinyint", "default" => 0, "comment" => "Number of times the delivery has failed"],
1285                         "receivers" => ["type" => "mediumtext", "comment" => "JSON encoded array with the receiving contacts"],
1286                 ],
1287                 "indexes" => [
1288                         "PRIMARY" => ["uri-id", "inbox-id"],
1289                         "inbox-id_created" => ["inbox-id", "created"],
1290                         "uid" => ["uid"],
1291                 ]
1292         ],
1293         "post-delivery-data" => [
1294                 "comment" => "Delivery data for items",
1295                 "fields" => [
1296                         "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"],
1297                         "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"],
1298                         "inform" => ["type" => "mediumtext", "comment" => "Additional receivers of the linked item"],
1299                         "queue_count" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Initial number of delivery recipients, used as item.delivery_queue_count"],
1300                         "queue_done" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries, used as item.delivery_queue_done"],
1301                         "queue_failed" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of unsuccessful deliveries, used as item.delivery_queue_failed"],
1302                         "activitypub" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via ActivityPub"],
1303                         "dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via DFRN"],
1304                         "legacy_dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via legacy DFRN"],
1305                         "diaspora" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via Diaspora"],
1306                         "ostatus" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via OStatus"],
1307                 ],
1308                 "indexes" => [
1309                         "PRIMARY" => ["uri-id"],
1310                 ]
1311         ],
1312         "post-history" => [
1313                 "comment" => "Post history",
1314                 "fields" => [
1315                         "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"],
1316                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "primary" => "1", "comment" => "Date of edit"],
1317                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "item title"],
1318                         "content-warning" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1319                         "body" => ["type" => "mediumtext", "comment" => "item body content"],
1320                         "raw-body" => ["type" => "mediumtext", "comment" => "Body without embedded media links"],
1321                         "location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "text location where this item originated"],
1322                         "coord" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "longitude/latitude pair representing location where this item originated"],
1323                         "language" => ["type" => "text", "comment" => "Language information about this post"],
1324                         "app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "application which generated this item"],
1325                         "rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1326                         "rendered-html" => ["type" => "mediumtext", "comment" => "item.body converted to html"],
1327                         "object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams object type"],
1328                         "object" => ["type" => "text", "comment" => "JSON encoded object structure unless it is an implied object (normal post)"],
1329                         "target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
1330                         "target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
1331                         "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"],
1332                         "plink" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
1333                 ],
1334                 "indexes" => [
1335                         "PRIMARY" => ["uri-id", "edited"],
1336                 ]
1337         ],
1338         "post-link" => [
1339                 "comment" => "Post related external links",
1340                 "fields" => [
1341                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1342                         "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"],
1343                         "url" => ["type" => "varbinary(511)", "not null" => "1", "comment" => "External URL"],
1344                         "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1345                         "height" => ["type" => "smallint unsigned", "comment" => "Height of the media"],
1346                         "width" => ["type" => "smallint unsigned", "comment" => "Width of the media"],
1347                         "blurhash" => ["type" => "varbinary(255)", "comment" => "BlurHash representation of the link"],
1348                 ],
1349                 "indexes" => [
1350                         "PRIMARY" => ["id"],
1351                         "uri-id-url" => ["UNIQUE", "uri-id", "url"],
1352                 ]
1353         ],
1354         "post-media" => [
1355                 "comment" => "Attached media",
1356                 "fields" => [
1357                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1358                         "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"],
1359                         "url" => ["type" => "varbinary(1024)", "not null" => "1", "comment" => "Media URL"],
1360                         "media-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the activities uri-id"],
1361                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Media type"],
1362                         "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1363                         "height" => ["type" => "smallint unsigned", "comment" => "Height of the media"],
1364                         "width" => ["type" => "smallint unsigned", "comment" => "Width of the media"],
1365                         "size" => ["type" => "bigint unsigned", "comment" => "Media size"],
1366                         "blurhash" => ["type" => "varbinary(255)", "comment" => "BlurHash representation of the image"],
1367                         "preview" => ["type" => "varbinary(512)", "comment" => "Preview URL"],
1368                         "preview-height" => ["type" => "smallint unsigned", "comment" => "Height of the preview picture"],
1369                         "preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
1370                         "description" => ["type" => "text", "comment" => ""],
1371                         "name" => ["type" => "varchar(255)", "comment" => "Name of the media"],
1372                         "author-url" => ["type" => "varbinary(383)", "comment" => "URL of the author of the media"],
1373                         "author-name" => ["type" => "varchar(255)", "comment" => "Name of the author of the media"],
1374                         "author-image" => ["type" => "varbinary(383)", "comment" => "Image of the author of the media"],
1375                         "publisher-url" => ["type" => "varbinary(383)", "comment" => "URL of the publisher of the media"],
1376                         "publisher-name" => ["type" => "varchar(255)", "comment" => "Name of the publisher of the media"],
1377                         "publisher-image" => ["type" => "varbinary(383)", "comment" => "Image of the publisher of the media"],
1378                 ],
1379                 "indexes" => [
1380                         "PRIMARY" => ["id"],
1381                         "uri-id-url" => ["UNIQUE", "uri-id", "url(512)"],
1382                         "uri-id-id" => ["uri-id", "id"],
1383                         "media-uri-id" => ["media-uri-id"],
1384                 ]
1385         ],
1386         "post-question" => [
1387                 "comment" => "Question",
1388                 "fields" => [
1389                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1390                         "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"],
1391                         "multiple" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Multiple choice"],
1392                         "voters" => ["type" => "int unsigned", "comment" => "Number of voters for this question"],
1393                         "end-time" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Question end time"],
1394                 ],
1395                 "indexes" => [
1396                         "PRIMARY" => ["id"],
1397                         "uri-id" => ["UNIQUE", "uri-id"],
1398                 ]
1399         ],
1400         "post-question-option" => [
1401                 "comment" => "Question option",
1402                 "fields" => [
1403                         "id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => "Id of the question"],
1404                         "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"],
1405                         "name" => ["type" => "varchar(255)", "comment" => "Name of the option"],
1406                         "replies" => ["type" => "int unsigned", "comment" => "Number of replies for this question option"],
1407                 ],
1408                 "indexes" => [
1409                         "PRIMARY" => ["uri-id", "id"],
1410                 ]
1411         ],
1412         "post-tag" => [
1413                 "comment" => "post relation to tags",
1414                 "fields" => [
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                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1417                         "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1418                         "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"],
1419                 ],
1420                 "indexes" => [
1421                         "PRIMARY" => ["uri-id", "type", "tid", "cid"],
1422                         "tid" => ["tid"],
1423                         "cid" => ["cid"]
1424                 ]
1425         ],
1426         "post-thread" => [
1427                 "comment" => "Thread related data",
1428                 "fields" => [
1429                         "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"],
1430                         "conversation-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the conversation uri"],
1431                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1432                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1433                         "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"],
1434                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1435                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1436                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1437                         "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"],
1438                         "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1439                 ],
1440                 "indexes" => [
1441                         "PRIMARY" => ["uri-id"],
1442                         "conversation-id" => ["conversation-id"],
1443                         "owner-id" => ["owner-id"],
1444                         "author-id" => ["author-id"],
1445                         "causer-id" => ["causer-id"],
1446                         "received" => ["received"],
1447                         "commented" => ["commented"],
1448                 ]
1449         ],
1450         "post-user" => [
1451                 "comment" => "User specific post data",
1452                 "fields" => [
1453                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
1454                         "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"],
1455                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1456                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1457                         "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1458                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1459                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1460                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1461                         "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1462                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1463                         "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"],
1464                         "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"],
1465                         "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"],
1466                         "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1467                         "post-reason" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Reason why the post arrived at the user"],
1468                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1469                         "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1470                         "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1471                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1472                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"],
1473                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1474                         "protocol" => ["type" => "tinyint unsigned", "comment" => "Protocol used to deliver the item for this user"],
1475                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1476                         "event-id" => ["type" => "int unsigned", "foreign" => ["event" => "id"], "comment" => "Used to link to the event.id"],
1477                         "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1478                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1479                         "notification-type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1480                         "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1481                         "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1482                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1483                 ],
1484                 "indexes" => [
1485                         "PRIMARY" => ["id"],
1486                         "uid_uri-id" => ["UNIQUE", "uid", "uri-id"],
1487                         "uri-id" => ["uri-id"],
1488                         "parent-uri-id" => ["parent-uri-id"],
1489                         "thr-parent-id" => ["thr-parent-id"],
1490                         "external-id" => ["external-id"],
1491                         "owner-id" => ["owner-id"],
1492                         "author-id" => ["author-id"],
1493                         "causer-id" => ["causer-id"],
1494                         "vid" => ["vid"],
1495                         "contact-id" => ["contact-id"],
1496                         "event-id" => ["event-id"],
1497                         "psid" => ["psid"],
1498                         "author-id_uid" => ["author-id", "uid"],
1499                         "author-id_received" => ["author-id", "received"],
1500                         "parent-uri-id_uid" => ["parent-uri-id", "uid"],
1501                         "uid_wall_received" => ["uid", "wall", "received"],
1502                         "uid_contactid" => ["uid", "contact-id"],
1503                         "uid_unseen_contactid" => ["uid", "unseen", "contact-id"],
1504                         "uid_unseen" => ["uid", "unseen"],
1505                         "uid_hidden_uri-id" => ["uid", "hidden", "uri-id"],
1506                 ],
1507         ],
1508         "post-thread-user" => [
1509                 "comment" => "Thread related data per user",
1510                 "fields" => [
1511                         "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"],
1512                         "conversation-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the conversation uri"],
1513                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1514                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1515                         "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"],
1516                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1517                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1518                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1519                         "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"],
1520                         "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1521                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1522                         "pinned" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
1523                         "starred" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1524                         "ignored" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Ignore updates for this thread"],
1525                         "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1526                         "mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1527                         "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1528                         "forum_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
1529                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1530                         "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1531                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1532                         "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1533                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1534                         "post-user-id" => ["type" => "int unsigned", "foreign" => ["post-user" => "id"], "comment" => "Id of the post-user table"],
1535                 ],
1536                 "indexes" => [
1537                         "PRIMARY" => ["uid", "uri-id"],
1538                         "uri-id" => ["uri-id"],
1539                         "conversation-id" => ["conversation-id"],
1540                         "owner-id" => ["owner-id"],
1541                         "author-id" => ["author-id"],
1542                         "causer-id" => ["causer-id"],
1543                         "uid" => ["uid"],
1544                         "contact-id" => ["contact-id"],
1545                         "psid" => ["psid"],
1546                         "post-user-id" => ["post-user-id"],
1547                         "commented" => ["commented"],
1548                         "uid_received" => ["uid", "received"],
1549                         "uid_wall_received" => ["uid", "wall", "received"],
1550                         "uid_commented" => ["uid", "commented"],
1551                         "uid_starred" => ["uid", "starred"],
1552                         "uid_mention" => ["uid", "mention"],
1553                 ]
1554         ],
1555         "post-user-notification" => [
1556                 "comment" => "User post notifications",
1557                 "fields" => [
1558                         "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"],
1559                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1560                         "notification-type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1561                 ],
1562                 "indexes" => [
1563                         "PRIMARY" => ["uid", "uri-id"],
1564                         "uri-id" => ["uri-id"],
1565                 ],
1566         ],
1567         "process" => [
1568                 "comment" => "Currently running system processes",
1569                 "fields" => [
1570                         "pid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => "The ID of the process"],
1571                         "hostname" => ["type" => "varchar(32)", "not null" => "1", "primary" => "1", "comment" => "The name of the host the process is ran on"],
1572                         "command" => ["type" => "varbinary(32)", "not null" => "1", "default" => "", "comment" => ""],
1573                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1574                 ],
1575                 "indexes" => [
1576                         "PRIMARY" => ["pid", "hostname"],
1577                         "command" => ["command"],
1578                 ]
1579         ],
1580         "profile" => [
1581                 "comment" => "user profiles data",
1582                 "fields" => [
1583                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1584                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1585                         "profile-name" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1586                         "is-default" => ["type" => "boolean", "comment" => "Deprecated"],
1587                         "hide-friends" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide friend list from viewers of this profile"],
1588                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1589                         "pdesc" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1590                         "dob" => ["type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00", "comment" => "Day of birth"],
1591                         "address" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1592                         "locality" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1593                         "region" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1594                         "postal-code" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1595                         "country-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1596                         "hometown" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1597                         "gender" => ["type" => "varchar(32)", "comment" => "Deprecated"],
1598                         "marital" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1599                         "with" => ["type" => "text", "comment" => "Deprecated"],
1600                         "howlong" => ["type" => "datetime", "comment" => "Deprecated"],
1601                         "sexual" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1602                         "politic" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1603                         "religion" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1604                         "pub_keywords" => ["type" => "text", "comment" => ""],
1605                         "prv_keywords" => ["type" => "text", "comment" => ""],
1606                         "likes" => ["type" => "text", "comment" => "Deprecated"],
1607                         "dislikes" => ["type" => "text", "comment" => "Deprecated"],
1608                         "about" => ["type" => "text", "comment" => "Profile description"],
1609                         "summary" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1610                         "music" => ["type" => "text", "comment" => "Deprecated"],
1611                         "book" => ["type" => "text", "comment" => "Deprecated"],
1612                         "tv" => ["type" => "text", "comment" => "Deprecated"],
1613                         "film" => ["type" => "text", "comment" => "Deprecated"],
1614                         "interest" => ["type" => "text", "comment" => "Deprecated"],
1615                         "romance" => ["type" => "text", "comment" => "Deprecated"],
1616                         "work" => ["type" => "text", "comment" => "Deprecated"],
1617                         "education" => ["type" => "text", "comment" => "Deprecated"],
1618                         "contact" => ["type" => "text", "comment" => "Deprecated"],
1619                         "homepage" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1620                         "homepage_verified" => ["type" => "boolean", "not null" => 1, "default" => "0", "comment" => "was the homepage verified by a rel-me link back to the profile"],
1621                         "xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
1622                         "matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
1623                         "photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
1624                         "thumb" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
1625                         "publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish default profile in local directory"],
1626                         "net-publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish profile in global directory"],
1627                 ],
1628                 "indexes" => [
1629                         "PRIMARY" => ["id"],
1630                         "uid_is-default" => ["uid", "is-default"],
1631                         "pub_keywords" => ["FULLTEXT", "pub_keywords"],
1632                 ]
1633         ],
1634         "profile_field" => [
1635                 "comment" => "Custom profile fields",
1636                 "fields" => [
1637                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1638                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner user id"],
1639                         "order" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "1", "comment" => "Field ordering per user"],
1640                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this profile field - 0 = public"],
1641                         "label" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Label of the field"],
1642                         "value" => ["type" => "text", "comment" => "Value of the field"],
1643                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
1644                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
1645                 ],
1646                 "indexes" => [
1647                         "PRIMARY" => ["id"],
1648                         "uid" => ["uid"],
1649                         "order" => ["order"],
1650                         "psid" => ["psid"],
1651                 ]
1652         ],
1653         "push_subscriber" => [
1654                 "comment" => "Used for OStatus: Contains feed subscribers",
1655                 "fields" => [
1656                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1657                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1658                         "callback_url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => ""],
1659                         "topic" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1660                         "nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1661                         "push" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
1662                         "last_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last successful trial"],
1663                         "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
1664                         "renewed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last subscription renewal"],
1665                         "secret" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1666                 ],
1667                 "indexes" => [
1668                         "PRIMARY" => ["id"],
1669                         "next_try" => ["next_try"],
1670                         "uid" => ["uid"]
1671                 ]
1672         ],
1673         "register" => [
1674                 "comment" => "registrations requiring admin approval",
1675                 "fields" => [
1676                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1677                         "hash" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
1678                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1679                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1680                         "password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1681                         "language" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
1682                         "note" => ["type" => "text", "comment" => ""],
1683                 ],
1684                 "indexes" => [
1685                         "PRIMARY" => ["id"],
1686                         "uid" => ["uid"],
1687                 ]
1688         ],
1689         "report" => [
1690                 "comment" => "",
1691                 "fields" => [
1692                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1693                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Reporting user"],
1694                         "reporter-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Reporting contact"],
1695                         "cid" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["contact" => "id"], "comment" => "Reported contact"],
1696                         "comment" => ["type" => "text", "comment" => "Report"],
1697                         "category" => ["type" => "varchar(20)", "comment" => "Category of the report (spam, violation, other)"],
1698                         "rules" => ["type" => "text", "comment" => "Violated rules"],
1699                         "forward" => ["type" => "boolean", "comment" => "Forward the report to the remote server"],
1700                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1701                         "status" => ["type" => "tinyint unsigned", "comment" => "Status of the report"],
1702                 ],
1703                 "indexes" => [
1704                         "PRIMARY" => ["id"],
1705                         "uid" => ["uid"],
1706                         "cid" => ["cid"],
1707                         "reporter-id" => ["reporter-id"],
1708                 ]
1709         ],
1710         "report-post" => [
1711                 "comment" => "",
1712                 "fields" => [
1713                         "rid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["report" => "id"], "comment" => "Report id"],
1714                         "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Uri-id of the reported post"],
1715                         "status" => ["type" => "tinyint unsigned", "comment" => "Status of the reported post"],
1716                 ],
1717                 "indexes" => [
1718                         "PRIMARY" => ["rid", "uri-id"],
1719                         "uri-id" => ["uri-id"],
1720                 ]
1721         ],
1722         "search" => [
1723                 "comment" => "",
1724                 "fields" => [
1725                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1726                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1727                         "term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1728                 ],
1729                 "indexes" => [
1730                         "PRIMARY" => ["id"],
1731                         "uid_term" => ["uid", "term(64)"],
1732                         "term" => ["term(64)"]
1733                 ]
1734         ],
1735         "session" => [
1736                 "comment" => "web session storage",
1737                 "fields" => [
1738                         "id" => ["type" => "bigint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1739                         "sid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
1740                         "data" => ["type" => "text", "comment" => ""],
1741                         "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1742                 ],
1743                 "indexes" => [
1744                         "PRIMARY" => ["id"],
1745                         "sid" => ["sid(64)"],
1746                         "expire" => ["expire"],
1747                 ]
1748         ],
1749         "storage" => [
1750                 "comment" => "Data stored by Database storage backend",
1751                 "fields" => [
1752                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1753                         "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"]
1754                 ],
1755                 "indexes" => [
1756                         "PRIMARY" => ["id"]
1757                 ]
1758         ],
1759         "subscription" => [
1760                 "comment" => "Push Subscription for the API",
1761                 "fields" => [
1762                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1763                         "application-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["application" => "id"], "comment" => ""],
1764                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1765                         "endpoint" => ["type" => "varchar(511)", "comment" => "Endpoint URL"],
1766                         "pubkey" => ["type" => "varchar(127)", "comment" => "User agent public key"],
1767                         "secret" => ["type" => "varchar(32)", "comment" => "Auth secret"],
1768                         "follow" => ["type" => "boolean", "comment" => ""],
1769                         "favourite" => ["type" => "boolean", "comment" => ""],
1770                         "reblog" => ["type" => "boolean", "comment" => ""],
1771                         "mention" => ["type" => "boolean", "comment" => ""],
1772                         "poll" => ["type" => "boolean", "comment" => ""],
1773                         "follow_request" => ["type" => "boolean", "comment" => ""],
1774                         "status" => ["type" => "boolean", "comment" => ""],
1775                 ],
1776                 "indexes" => [
1777                         "PRIMARY" => ["id"],
1778                         "application-id_uid" => ["UNIQUE", "application-id", "uid"],
1779                         "uid_application-id" => ["uid", "application-id"],
1780                 ]
1781         ],
1782         "userd" => [
1783                 "comment" => "Deleted usernames",
1784                 "fields" => [
1785                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1786                         "username" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
1787                 ],
1788                 "indexes" => [
1789                         "PRIMARY" => ["id"],
1790                         "username" => ["username(32)"],
1791                 ]
1792         ],
1793         "user-contact" => [
1794                 "comment" => "User specific public contact data",
1795                 "fields" => [
1796                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["contact" => "id"], "comment" => "Contact id of the linked public contact"],
1797                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1798                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
1799                         "blocked" => ["type" => "boolean", "comment" => "Contact is completely blocked for this user"],
1800                         "ignored" => ["type" => "boolean", "comment" => "Posts from this contact are ignored"],
1801                         "collapsed" => ["type" => "boolean", "comment" => "Posts from this contact are collapsed"],
1802                         "hidden" => ["type" => "boolean", "comment" => "This contact is hidden from the others"],
1803                         "is-blocked" => ["type" => "boolean", "comment" => "User is blocked by this contact"],
1804                         "pending" => ["type" => "boolean", "comment" => ""],
1805                         "rel" => ["type" => "tinyint unsigned", "comment" => "The kind of the relation between the user and the contact"],
1806                         "info" => ["type" => "mediumtext", "comment" => ""],
1807                         "notify_new_posts" => ["type" => "boolean", "comment" => ""],
1808                         "remote_self" => ["type" => "boolean", "comment" => ""],
1809                         "fetch_further_information" => ["type" => "tinyint unsigned", "comment" => ""],
1810                         "ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
1811                         "subhub" => ["type" => "boolean", "comment" => ""],
1812                         "hub-verify" => ["type" => "varbinary(383)", "comment" => ""],
1813                         "protocol" => ["type" => "char(4)", "comment" => "Protocol of the contact"],
1814                         "rating" => ["type" => "tinyint", "comment" => "Automatically detected feed poll frequency"],
1815                         "priority" => ["type" => "tinyint unsigned", "comment" => "Feed poll priority"],
1816                 ],
1817                 "indexes" => [
1818                         "PRIMARY" => ["uid", "cid"],
1819                         "cid" => ["cid"],
1820                         "uri-id_uid" => ["UNIQUE", "uri-id", "uid"],
1821                 ]
1822         ],
1823         "arrived-activity" => [
1824                 "comment" => "Id of arrived activities",
1825                 "fields" => [
1826                         "object-id" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "object id of the incoming activity"],
1827                         "received" => ["type" => "datetime", "comment" => "Receiving date"],
1828                 ],
1829                 "indexes" => [
1830                         "PRIMARY" => ["object-id"],
1831                 ],
1832                 "engine" => "MEMORY",
1833         ],
1834         "fetched-activity" => [
1835                 "comment" => "Id of fetched activities",
1836                 "fields" => [
1837                         "object-id" => ["type" => "varbinary(383)", "not null" => "1", "primary" => "1", "comment" => "object id of fetched activity"],
1838                         "received" => ["type" => "datetime", "comment" => "Receiving date"],
1839                 ],
1840                 "indexes" => [
1841                         "PRIMARY" => ["object-id"],
1842                 ],
1843                 "engine" => "MEMORY",
1844         ],
1845         "worker-ipc" => [
1846                 "comment" => "Inter process communication between the frontend and the worker",
1847                 "fields" => [
1848                         "key" => ["type" => "int", "not null" => "1", "primary" => "1", "comment" => ""],
1849                         "jobs" => ["type" => "boolean", "comment" => "Flag for outstanding jobs"],
1850                 ],
1851                 "indexes" => [
1852                         "PRIMARY" => ["key"],
1853                 ],
1854                 "engine" => "MEMORY",
1855         ],
1856 ];