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