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