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