]> git.mxchange.org Git - friendica.git/blob - static/dbstructure.config.php
Updated main translation file after translation string update
[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', 1415);
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         "application" => [
430                 "comment" => "OAuth application",
431                 "fields" => [
432                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
433                         "client_id" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
434                         "client_secret" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
435                         "name" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
436                         "redirect_uri" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
437                         "website" => ["type" => "varchar(255)", "comment" => ""],
438                         "scopes" => ["type" => "varchar(255)", "comment" => ""],
439                 ],
440                 "indexes" => [
441                         "PRIMARY" => ["id"],
442                         "client_id" => ["UNIQUE", "client_id"]
443                 ]
444         ],
445         "attach" => [
446                 "comment" => "file attachments",
447                 "fields" => [
448                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
449                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
450                         "hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "hash"],
451                         "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "filename of original"],
452                         "filetype" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "mimetype"],
453                         "filesize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "size in bytes"],
454                         "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"],
455                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
456                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
457                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>"],
458                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
459                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
460                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
461                         "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
462                         "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
463                 ],
464                 "indexes" => [
465                         "PRIMARY" => ["id"],
466                         "uid" => ["uid"],
467                 ]
468         ],
469         "auth_codes" => [
470                 "comment" => "OAuth usage",
471                 "fields" => [
472                         "id" => ["type" => "varchar(40)", "not null" => "1", "primary" => "1", "comment" => ""],
473                         "client_id" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "foreign" => ["clients" => "client_id"],
474                                 "comment" => ""],
475                         "redirect_uri" => ["type" => "varchar(200)", "not null" => "1", "default" => "", "comment" => ""],
476                         "expires" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
477                         "scope" => ["type" => "varchar(250)", "not null" => "1", "default" => "", "comment" => ""],
478                 ],
479                 "indexes" => [
480                         "PRIMARY" => ["id"],
481                         "client_id" => ["client_id"]
482                 ]
483         ],
484         "cache" => [
485                 "comment" => "Stores temporary data",
486                 "fields" => [
487                         "k" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "cache key"],
488                         "v" => ["type" => "mediumtext", "comment" => "cached serialized value"],
489                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
490                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache insertion"],
491                 ],
492                 "indexes" => [
493                         "PRIMARY" => ["k"],
494                         "k_expires" => ["k", "expires"],
495                 ]
496         ],
497         "challenge" => [
498                 "comment" => "",
499                 "fields" => [
500                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
501                         "challenge" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
502                         "dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
503                         "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
504                         "type" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
505                         "last_update" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
506                 ],
507                 "indexes" => [
508                         "PRIMARY" => ["id"],
509                         "expire" => ["expire"],
510                 ]
511         ],
512         "config" => [
513                 "comment" => "main configuration storage",
514                 "fields" => [
515                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
516                         "cat" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
517                         "k" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
518                         "v" => ["type" => "mediumtext", "comment" => ""],
519                 ],
520                 "indexes" => [
521                         "PRIMARY" => ["id"],
522                         "cat_k" => ["UNIQUE", "cat", "k"],
523                 ]
524         ],
525         "contact-relation" => [
526                 "comment" => "Contact relations",
527                 "fields" => [
528                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "contact the related contact had interacted with"],
529                         "relation-cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "related contact who had interacted with the contact"],
530                         "last-interaction" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last interaction"],
531                         "follow-updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last update of the contact relationship"],
532                         "follows" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
533                 ],
534                 "indexes" => [
535                         "PRIMARY" => ["cid", "relation-cid"],
536                         "relation-cid" => ["relation-cid"],
537                 ]
538         ],
539         "conv" => [
540                 "comment" => "private messages",
541                 "fields" => [
542                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
543                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this conversation"],
544                         "recips" => ["type" => "text", "comment" => "sender_handle;recipient_handle"],
545                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
546                         "creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "handle of creator"],
547                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation timestamp"],
548                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "edited timestamp"],
549                         "subject" => ["type" => "text", "comment" => "subject of initial message"],
550                 ],
551                 "indexes" => [
552                         "PRIMARY" => ["id"],
553                         "uid" => ["uid"],
554                 ]
555         ],
556         "conversation" => [
557                 "comment" => "Raw data and structure information for messages",
558                 "fields" => [
559                         "item-uri" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "Original URI of the item - unrelated to the table with the same name"],
560                         "reply-to-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "URI to which this item is a reply"],
561                         "conversation-uri" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "GNU Social conversation URI"],
562                         "conversation-href" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "GNU Social conversation link"],
563                         "protocol" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "255", "comment" => "The protocol of the item"],
564                         "direction" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "How the message arrived here: 1=push, 2=pull"],
565                         "source" => ["type" => "mediumtext", "comment" => "Original source"],
566                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Receiving date"],
567                 ],
568                 "indexes" => [
569                         "PRIMARY" => ["item-uri"],
570                         "conversation-uri" => ["conversation-uri"],
571                         "received" => ["received"],
572                 ]
573         ],
574         "delayed-post" => [
575                 "comment" => "Posts that are about to be distributed at a later time",
576                 "fields" => [
577                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
578                         "uri" => ["type" => "varchar(255)", "comment" => "URI of the post that will be distributed later"],
579                         "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
580                         "delayed" => ["type" => "datetime", "comment" => "delay time"],
581                 ],
582                 "indexes" => [
583                         "PRIMARY" => ["id"],
584                         "uid_uri" => ["UNIQUE", "uid", "uri(190)"],
585                 ]
586         ],
587         "diaspora-interaction" => [
588                 "comment" => "Signed Diaspora Interaction",
589                 "fields" => [
590                         "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"],
591                         "interaction" => ["type" => "mediumtext", "comment" => "The Diaspora interaction"]
592                 ],
593                 "indexes" => [
594                         "PRIMARY" => ["uri-id"]
595                 ]
596         ],
597         "event" => [
598                 "comment" => "Events",
599                 "fields" => [
600                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
601                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
602                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
603                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
604                         "uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
605                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
606                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
607                         "start" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event start time"],
608                         "finish" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event end time"],
609                         "summary" => ["type" => "text", "comment" => "short description or title of the event"],
610                         "desc" => ["type" => "text", "comment" => "event description"],
611                         "location" => ["type" => "text", "comment" => "event location"],
612                         "type" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "comment" => "event or birthday"],
613                         "nofinish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if event does have no end this is 1"],
614                         "adjust" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "adjust to timezone of the recipient (0 or 1)"],
615                         "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "0 or 1"],
616                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
617                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
618                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
619                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
620                 ],
621                 "indexes" => [
622                         "PRIMARY" => ["id"],
623                         "uid_start" => ["uid", "start"],
624                         "cid" => ["cid"],
625                 ]
626         ],
627         "fcontact" => [
628                 "comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
629                 "fields" => [
630                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
631                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "unique id"],
632                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
633                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
634                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
635                         "request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
636                         "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
637                         "addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
638                         "batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
639                         "notify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
640                         "poll" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
641                         "confirm" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
642                         "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
643                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
644                         "alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
645                         "pubkey" => ["type" => "text", "comment" => ""],
646                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
647                 ],
648                 "indexes" => [
649                         "PRIMARY" => ["id"],
650                         "addr" => ["addr(32)"],
651                         "url" => ["UNIQUE", "url(190)"],
652                 ]
653         ],
654         "fsuggest" => [
655                 "comment" => "friend suggestion stuff",
656                 "fields" => [
657                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
658                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
659                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
660                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
661                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
662                         "request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
663                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
664                         "note" => ["type" => "text", "comment" => ""],
665                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
666                 ],
667                 "indexes" => [
668                         "PRIMARY" => ["id"],
669                         "cid" => ["cid"],
670                         "uid" => ["uid"],
671                 ]
672         ],
673         "group" => [
674                 "comment" => "privacy groups, group info",
675                 "fields" => [
676                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
677                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
678                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the member list is not private"],
679                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the group has been deleted"],
680                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "human readable name of group"],
681                 ],
682                 "indexes" => [
683                         "PRIMARY" => ["id"],
684                         "uid" => ["uid"],
685                 ]
686         ],
687         "group_member" => [
688                 "comment" => "privacy groups, member info",
689                 "fields" => [
690                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
691                         "gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["group" => "id"], "comment" => "groups.id of the associated group"],
692                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id of the member assigned to the associated group"],
693                 ],
694                 "indexes" => [
695                         "PRIMARY" => ["id"],
696                         "contactid" => ["contact-id"],
697                         "gid_contactid" => ["UNIQUE", "gid", "contact-id"],
698                 ]
699         ],
700         "gserver-tag" => [
701                 "comment" => "Tags that the server has subscribed",
702                 "fields" => [
703                         "gserver-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["gserver" => "id"], "primary" => "1",
704                                 "comment" => "The id of the gserver"],
705                         "tag" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "primary" => "1", "comment" => "Tag that the server has subscribed"],
706                 ],
707                 "indexes" => [
708                         "PRIMARY" => ["gserver-id", "tag"],
709                         "tag" => ["tag"],
710                 ]
711         ],
712         "hook" => [
713                 "comment" => "addon hook registry",
714                 "fields" => [
715                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
716                         "hook" => ["type" => "varbinary(100)", "not null" => "1", "default" => "", "comment" => "name of hook"],
717                         "file" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "relative filename of hook handler"],
718                         "function" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "function name of hook handler"],
719                         "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"],
720                 ],
721                 "indexes" => [
722                         "PRIMARY" => ["id"],
723                         "priority" => ["priority"],
724                         "hook_file_function" => ["UNIQUE", "hook", "file", "function"],
725                 ]
726         ],
727         "host" => [
728                 "comment" => "Hostname",
729                 "fields" => [
730                         "id" => ["type" => "tinyint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
731                         "name" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => "The hostname"],
732                 ],
733                 "indexes" => [
734                         "PRIMARY" => ["id"],
735                         "name" => ["UNIQUE", "name"],
736                 ]
737         ],
738         "inbox-status" => [
739                 "comment" => "Status of ActivityPub inboxes",
740                 "fields" => [
741                         "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the inbox"],
742                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of this entry"],
743                         "success" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful delivery"],
744                         "failure" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last failed delivery"],
745                         "previous" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Previous delivery date"],
746                         "archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is the inbox archived?"],
747                         "shared" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is it a shared inbox?"]
748                 ],
749                 "indexes" => [
750                         "PRIMARY" => ["url"]
751                 ]
752         ],
753         "intro" => [
754                 "comment" => "",
755                 "fields" => [
756                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
757                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
758                         "fid" => ["type" => "int unsigned", "relation" => ["fcontact" => "id"], "comment" => ""],
759                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
760                         "knowyou" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
761                         "duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
762                         "note" => ["type" => "text", "comment" => ""],
763                         "hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
764                         "datetime" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
765                         "blocked" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => ""],
766                         "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
767                 ],
768                 "indexes" => [
769                         "PRIMARY" => ["id"],
770                         "contact-id" => ["contact-id"],
771                         "uid" => ["uid"],
772                 ]
773         ],
774         "locks" => [
775                 "comment" => "",
776                 "fields" => [
777                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
778                         "name" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => ""],
779                         "locked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
780                         "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process ID"],
781                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
782                 ],
783                 "indexes" => [
784                         "PRIMARY" => ["id"],
785                         "name_expires" => ["name", "expires"]
786                 ]
787         ],
788         "mail" => [
789                 "comment" => "private messages",
790                 "fields" => [
791                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
792                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
793                         "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
794                         "from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
795                         "from-photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
796                         "from-url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
797                         "contact-id" => ["type" => "varchar(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
798                         "convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],
799                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
800                         "body" => ["type" => "mediumtext", "comment" => ""],
801                         "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if message visited it is 1"],
802                         "reply" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
803                         "replied" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
804                         "unknown" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if sender not in the contact table this is 1"],
805                         "uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
806                         "parent-uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
807                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time of the private message"],
808                 ],
809                 "indexes" => [
810                         "PRIMARY" => ["id"],
811                         "uid_seen" => ["uid", "seen"],
812                         "convid" => ["convid"],
813                         "uri" => ["uri(64)"],
814                         "parent-uri" => ["parent-uri(64)"],
815                         "contactid" => ["contact-id(32)"],
816                 ]
817         ],
818         "mailacct" => [
819                 "comment" => "Mail account data for fetching mails",
820                 "fields" => [
821                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
822                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
823                         "server" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
824                         "port" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
825                         "ssltype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
826                         "mailbox" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
827                         "user" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
828                         "pass" => ["type" => "text", "comment" => ""],
829                         "reply_to" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
830                         "action" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
831                         "movetofolder" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
832                         "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
833                         "last_check" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
834                 ],
835                 "indexes" => [
836                         "PRIMARY" => ["id"],
837                         "uid" => ["uid"],
838                 ]
839         ],
840         "manage" => [
841                 "comment" => "table of accounts that can manage each other",
842                 "fields" => [
843                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
844                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
845                         "mid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
846                 ],
847                 "indexes" => [
848                         "PRIMARY" => ["id"],
849                         "uid_mid" => ["UNIQUE", "uid", "mid"],
850                         "mid" => ["mid"],
851                 ]
852         ],
853         "notify" => [
854                 "comment" => "notifications",
855                 "fields" => [
856                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
857                         "type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
858                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
859                         "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
860                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
861                         "date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
862                         "msg" => ["type" => "mediumtext", "comment" => ""],
863                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
864                         "link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
865                         "iid" => ["type" => "int unsigned", "comment" => ""],
866                         "parent" => ["type" => "int unsigned", "comment" => ""],
867                         "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
868                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
869                         "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
870                         "verb" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
871                         "otype" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => ""],
872                         "name_cache" => ["type" => "tinytext", "comment" => "Cached bbcode parsing of name"],
873                         "msg_cache" => ["type" => "mediumtext", "comment" => "Cached bbcode parsing of msg"]
874                 ],
875                 "indexes" => [
876                         "PRIMARY" => ["id"],
877                         "seen_uid_date" => ["seen", "uid", "date"],
878                         "uid_date" => ["uid", "date"],
879                         "uid_type_link" => ["uid", "type", "link(190)"],
880                         "uri-id" => ["uri-id"],
881                         "parent-uri-id" => ["parent-uri-id"],
882                 ]
883         ],
884         "notify-threads" => [
885                 "comment" => "",
886                 "fields" => [
887                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
888                         "notify-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["notify" => "id"], "comment" => ""],
889                         "master-parent-item" => ["type" => "int unsigned", "comment" => "Deprecated"],
890                         "master-parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
891                         "parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
892                         "receiver-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"],
893                                 "comment" => "User id"],
894                 ],
895                 "indexes" => [
896                         "PRIMARY" => ["id"],
897                         "master-parent-uri-id" => ["master-parent-uri-id"],
898                         "receiver-uid" => ["receiver-uid"],
899                         "notify-id" => ["notify-id"],
900                 ]
901         ],
902         "oembed" => [
903                 "comment" => "cache for OEmbed queries",
904                 "fields" => [
905                         "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "page url"],
906                         "maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => "Maximum width passed to Oembed"],
907                         "content" => ["type" => "mediumtext", "comment" => "OEmbed data of the page"],
908                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
909                 ],
910                 "indexes" => [
911                         "PRIMARY" => ["url", "maxwidth"],
912                         "created" => ["created"],
913                 ]
914         ],
915         "openwebauth-token" => [
916                 "comment" => "Store OpenWebAuth token to verify contacts",
917                 "fields" => [
918                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
919                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id - currently unused"],
920                         "type" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Verify type"],
921                         "token" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A generated token"],
922                         "meta" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
923                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
924                 ],
925                 "indexes" => [
926                         "PRIMARY" => ["id"],
927                         "uid" => ["uid"],
928                 ]
929         ],
930         "parsed_url" => [
931                 "comment" => "cache for 'parse_url' queries",
932                 "fields" => [
933                         "url_hash" => ["type" => "binary(64)", "not null" => "1", "primary" => "1", "comment" => "page url hash"],
934                         "guessing" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the 'guessing' mode active?"],
935                         "oembed" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the data the result of oembed?"],
936                         "url" => ["type" => "text", "not null" => "1", "comment" => "page url"],
937                         "content" => ["type" => "mediumtext", "comment" => "page data"],
938                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
939                         "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of expiration"],
940                 ],
941                 "indexes" => [
942                         "PRIMARY" => ["url_hash", "guessing", "oembed"],
943                         "created" => ["created"],
944                         "expires" => ["expires"],
945                 ]
946         ],
947         "pconfig" => [
948                 "comment" => "personal (per user) configuration storage",
949                 "fields" => [
950                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Primary key"],
951                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
952                         "cat" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "Category"],
953                         "k" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "Key"],
954                         "v" => ["type" => "mediumtext", "comment" => "Value"],
955                 ],
956                 "indexes" => [
957                         "PRIMARY" => ["id"],
958                         "uid_cat_k" => ["UNIQUE", "uid", "cat", "k"],
959                 ]
960         ],
961         "photo" => [
962                 "comment" => "photo storage",
963                 "fields" => [
964                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
965                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid", "on delete" => "restrict"], "comment" => "Owner User id"],
966                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "contact.id"],
967                         "guid" => ["type" => "char(16)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this photo"],
968                         "resource-id" => ["type" => "char(32)", "not null" => "1", "default" => "", "comment" => ""],
969                         "hash" => ["type" => "char(32)", "comment" => "hash value of the photo"],
970                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation date"],
971                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edited date"],
972                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
973                         "desc" => ["type" => "text", "comment" => ""],
974                         "album" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "The name of the album to which the photo belongs"],
975                         "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
976                         "type" => ["type" => "varchar(30)", "not null" => "1", "default" => "image/jpeg"],
977                         "height" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
978                         "width" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
979                         "datasize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
980                         "data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
981                         "scale" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
982                         "profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
983                         "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
984                         "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
985                         "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
986                         "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
987                         "accessible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Make photo publicly accessible, ignoring permissions"],
988                         "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
989                         "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
990                         "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
991                 ],
992                 "indexes" => [
993                         "PRIMARY" => ["id"],
994                         "contactid" => ["contact-id"],
995                         "uid_contactid" => ["uid", "contact-id"],
996                         "uid_profile" => ["uid", "profile"],
997                         "uid_album_scale_created" => ["uid", "album(32)", "scale", "created"],
998                         "uid_album_resource-id_created" => ["uid", "album(32)", "resource-id", "created"],
999                         "resource-id" => ["resource-id"],
1000                 ]
1001         ],
1002         "post" => [
1003                 "comment" => "Structure for all posts",
1004                 "fields" => [
1005                         "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"],
1006                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1007                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1008                         "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1009                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1010                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1011                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1012                         "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1013                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1014                         "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"],
1015                         "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"],
1016                         "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"],
1017                         "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1018                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1019                         "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1020                         "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1021                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1022                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"]
1023                 ],
1024                 "indexes" => [
1025                         "PRIMARY" => ["uri-id"],
1026                         "parent-uri-id" => ["parent-uri-id"],
1027                         "thr-parent-id" => ["thr-parent-id"],
1028                         "external-id" => ["external-id"],
1029                         "owner-id" => ["owner-id"],
1030                         "author-id" => ["author-id"],
1031                         "causer-id" => ["causer-id"],
1032                         "vid" => ["vid"],
1033                 ]
1034         ],
1035         "post-category" => [
1036                 "comment" => "post relation to categories",
1037                 "fields" => [
1038                         "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"],
1039                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1040                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1041                         "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1042                 ],
1043                 "indexes" => [
1044                         "PRIMARY" => ["uri-id", "uid", "type", "tid"],
1045                         "uri-id" => ["tid"],
1046                         "uid" => ["uid"],
1047                 ]
1048         ],
1049         "post-content" => [
1050                 "comment" => "Content for all posts",
1051                 "fields" => [
1052                         "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"],
1053                         "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "item title"],
1054                         "content-warning" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1055                         "body" => ["type" => "mediumtext", "comment" => "item body content"],
1056                         "raw-body" => ["type" => "mediumtext", "comment" => "Body without embedded media links"],
1057                         "location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "text location where this item originated"],
1058                         "coord" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "longitude/latitude pair representing location where this item originated"],
1059                         "language" => ["type" => "text", "comment" => "Language information about this post"],
1060                         "app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "application which generated this item"],
1061                         "rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1062                         "rendered-html" => ["type" => "mediumtext", "comment" => "item.body converted to html"],
1063                         "object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams object type"],
1064                         "object" => ["type" => "text", "comment" => "JSON encoded object structure unless it is an implied object (normal post)"],
1065                         "target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
1066                         "target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
1067                         "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"],
1068                         "plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
1069                 ],
1070                 "indexes" => [
1071                         "PRIMARY" => ["uri-id"],
1072                         "plink" => ["plink(191)"],
1073                         "resource-id" => ["resource-id"],
1074                         "title-content-warning-body" => ["FULLTEXT", "title", "content-warning", "body"],
1075                 ]
1076         ],
1077         "post-delivery-data" => [
1078                 "comment" => "Delivery data for items",
1079                 "fields" => [
1080                         "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"],
1081                         "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"],
1082                         "inform" => ["type" => "mediumtext", "comment" => "Additional receivers of the linked item"],
1083                         "queue_count" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Initial number of delivery recipients, used as item.delivery_queue_count"],
1084                         "queue_done" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries, used as item.delivery_queue_done"],
1085                         "queue_failed" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of unsuccessful deliveries, used as item.delivery_queue_failed"],
1086                         "activitypub" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via ActivityPub"],
1087                         "dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via DFRN"],
1088                         "legacy_dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via legacy DFRN"],
1089                         "diaspora" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via Diaspora"],
1090                         "ostatus" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via OStatus"],
1091                 ],
1092                 "indexes" => [
1093                         "PRIMARY" => ["uri-id"],
1094                 ]
1095         ],
1096         "post-media" => [
1097                 "comment" => "Attached media",
1098                 "fields" => [
1099                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1100                         "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"],
1101                         "url" => ["type" => "varbinary(511)", "not null" => "1", "comment" => "Media URL"],
1102                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Media type"],
1103                         "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1104                         "height" => ["type" => "smallint unsigned", "comment" => "Height of the media"],
1105                         "width" => ["type" => "smallint unsigned", "comment" => "Width of the media"],
1106                         "size" => ["type" => "int unsigned", "comment" => "Media size"],
1107                         "preview" => ["type" => "varbinary(255)", "comment" => "Preview URL"],
1108                         "preview-height" => ["type" => "smallint unsigned", "comment" => "Height of the preview picture"],
1109                         "preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
1110                         "description" => ["type" => "text", "comment" => ""],
1111                         "name" => ["type" => "varchar(255)", "comment" => "Name of the media"],
1112                         "author-url" => ["type" => "varbinary(255)", "comment" => "URL of the author of the media"],
1113                         "author-name" => ["type" => "varchar(255)", "comment" => "Name of the author of the media"],
1114                         "author-image" => ["type" => "varbinary(255)", "comment" => "Image of the author of the media"],
1115                         "publisher-url" => ["type" => "varbinary(255)", "comment" => "URL of the publisher of the media"],
1116                         "publisher-name" => ["type" => "varchar(255)", "comment" => "Name of the publisher of the media"],
1117                         "publisher-image" => ["type" => "varbinary(255)", "comment" => "Image of the publisher of the media"],
1118                 ],
1119                 "indexes" => [
1120                         "PRIMARY" => ["id"],
1121                         "uri-id-url" => ["UNIQUE", "uri-id", "url"],
1122                 ]
1123         ],
1124         "post-tag" => [
1125                 "comment" => "post relation to tags",
1126                 "fields" => [
1127                         "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"],
1128                         "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1129                         "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1130                         "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"],
1131                 ],
1132                 "indexes" => [
1133                         "PRIMARY" => ["uri-id", "type", "tid", "cid"],
1134                         "tid" => ["tid"],
1135                         "cid" => ["cid"]
1136                 ]
1137         ],
1138         "post-thread" => [
1139                 "comment" => "Thread related data",
1140                 "fields" => [
1141                         "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"],
1142                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1143                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1144                         "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"],
1145                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1146                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1147                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1148                         "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"],
1149                         "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1150                 ],
1151                 "indexes" => [
1152                         "PRIMARY" => ["uri-id"],
1153                         "owner-id" => ["owner-id"],
1154                         "author-id" => ["author-id"],
1155                         "causer-id" => ["causer-id"],
1156                         "received" => ["received"],
1157                         "commented" => ["commented"],
1158                 ]
1159         ],
1160         "post-user" => [
1161                 "comment" => "User specific post data",
1162                 "fields" => [
1163                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
1164                         "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"],
1165                         "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1166                         "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1167                         "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1168                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1169                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1170                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1171                         "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1172                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1173                         "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"],
1174                         "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"],
1175                         "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"],
1176                         "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1177                         "post-reason" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Reason why the post arrived at the user"],
1178                         "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1179                         "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1180                         "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1181                         "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1182                         "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"],
1183                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1184                         "protocol" => ["type" => "tinyint unsigned", "comment" => "Protocol used to deliver the item for this user"],
1185                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1186                         "event-id" => ["type" => "int unsigned", "foreign" => ["event" => "id"], "comment" => "Used to link to the event.id"],
1187                         "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1188                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1189                         "notification-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1190                         "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1191                         "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1192                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1193                 ],
1194                 "indexes" => [
1195                         "PRIMARY" => ["id"],
1196                         "uid_uri-id" => ["UNIQUE", "uid", "uri-id"],
1197                         "uri-id" => ["uri-id"],
1198                         "parent-uri-id" => ["parent-uri-id"],
1199                         "thr-parent-id" => ["thr-parent-id"],
1200                         "external-id" => ["external-id"],
1201                         "owner-id" => ["owner-id"],
1202                         "author-id" => ["author-id"],
1203                         "causer-id" => ["causer-id"],
1204                         "vid" => ["vid"],
1205                         "contact-id" => ["contact-id"],
1206                         "event-id" => ["event-id"],
1207                         "psid" => ["psid"],
1208                         "author-id_uid" => ["author-id", "uid"],
1209                         "author-id_received" => ["author-id", "received"],
1210                         "parent-uri-id_uid" => ["parent-uri-id", "uid"],
1211                         "uid_contactid" => ["uid", "contact-id"],
1212                         "uid_unseen_contactid" => ["uid", "unseen", "contact-id"],
1213                         "uid_unseen" => ["uid", "unseen"],
1214                         "uid_hidden_uri-id" => ["uid", "hidden", "uri-id"],
1215                 ],
1216         ],
1217         "post-thread-user" => [
1218                 "comment" => "Thread related data per user",
1219                 "fields" => [
1220                         "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"],
1221                         "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1222                         "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1223                         "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"],
1224                         "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1225                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1226                         "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1227                         "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"],
1228                         "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1229                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1230                         "pinned" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "The thread is pinned on the profile page"],
1231                         "starred" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1232                         "ignored" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Ignore updates for this thread"],
1233                         "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1234                         "mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1235                         "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1236                         "forum_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1237                         "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1238                         "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1239                         "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1240                         "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1241                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1242                         "post-user-id" => ["type" => "int unsigned", "foreign" => ["post-user" => "id"], "comment" => "Id of the post-user table"],
1243                 ],
1244                 "indexes" => [
1245                         "PRIMARY" => ["uid", "uri-id"],
1246                         "uri-id" => ["uri-id"],
1247                         "owner-id" => ["owner-id"],
1248                         "author-id" => ["author-id"],
1249                         "causer-id" => ["causer-id"],
1250                         "uid" => ["uid"],
1251                         "contact-id" => ["contact-id"],
1252                         "psid" => ["psid"],
1253                         "post-user-id" => ["post-user-id"],
1254                         "commented" => ["commented"],
1255                         "uid_received" => ["uid", "received"],
1256                         "uid_pinned" => ["uid", "pinned"],
1257                         "uid_commented" => ["uid", "commented"],
1258                         "uid_starred" => ["uid", "starred"],
1259                         "uid_mention" => ["uid", "mention"],
1260                 ]
1261         ],
1262         "post-user-notification" => [
1263                 "comment" => "User post notifications",
1264                 "fields" => [
1265                         "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"],
1266                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1267                         "notification-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1268                 ],
1269                 "indexes" => [
1270                         "PRIMARY" => ["uid", "uri-id"],
1271                         "uri-id" => ["uri-id"],
1272                 ],
1273         ],
1274         "process" => [
1275                 "comment" => "Currently running system processes",
1276                 "fields" => [
1277                         "pid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => ""],
1278                         "command" => ["type" => "varbinary(32)", "not null" => "1", "default" => "", "comment" => ""],
1279                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1280                 ],
1281                 "indexes" => [
1282                         "PRIMARY" => ["pid"],
1283                         "command" => ["command"],
1284                 ]
1285         ],
1286         "profile" => [
1287                 "comment" => "user profiles data",
1288                 "fields" => [
1289                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1290                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1291                         "profile-name" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1292                         "is-default" => ["type" => "boolean", "comment" => "Deprecated"],
1293                         "hide-friends" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide friend list from viewers of this profile"],
1294                         "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1295                         "pdesc" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1296                         "dob" => ["type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00", "comment" => "Day of birth"],
1297                         "address" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1298                         "locality" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1299                         "region" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1300                         "postal-code" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1301                         "country-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1302                         "hometown" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1303                         "gender" => ["type" => "varchar(32)", "comment" => "Deprecated"],
1304                         "marital" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1305                         "with" => ["type" => "text", "comment" => "Deprecated"],
1306                         "howlong" => ["type" => "datetime", "comment" => "Deprecated"],
1307                         "sexual" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1308                         "politic" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1309                         "religion" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1310                         "pub_keywords" => ["type" => "text", "comment" => ""],
1311                         "prv_keywords" => ["type" => "text", "comment" => ""],
1312                         "likes" => ["type" => "text", "comment" => "Deprecated"],
1313                         "dislikes" => ["type" => "text", "comment" => "Deprecated"],
1314                         "about" => ["type" => "text", "comment" => "Profile description"],
1315                         "summary" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1316                         "music" => ["type" => "text", "comment" => "Deprecated"],
1317                         "book" => ["type" => "text", "comment" => "Deprecated"],
1318                         "tv" => ["type" => "text", "comment" => "Deprecated"],
1319                         "film" => ["type" => "text", "comment" => "Deprecated"],
1320                         "interest" => ["type" => "text", "comment" => "Deprecated"],
1321                         "romance" => ["type" => "text", "comment" => "Deprecated"],
1322                         "work" => ["type" => "text", "comment" => "Deprecated"],
1323                         "education" => ["type" => "text", "comment" => "Deprecated"],
1324                         "contact" => ["type" => "text", "comment" => "Deprecated"],
1325                         "homepage" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1326                         "xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1327                         "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1328                         "thumb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1329                         "publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish default profile in local directory"],
1330                         "net-publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish profile in global directory"],
1331                 ],
1332                 "indexes" => [
1333                         "PRIMARY" => ["id"],
1334                         "uid_is-default" => ["uid", "is-default"],
1335                         "pub_keywords" => ["FULLTEXT", "pub_keywords"],
1336                 ]
1337         ],
1338         "profile_check" => [
1339                 "comment" => "DFRN remote auth use",
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" => "User id"],
1343                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1344                         "dfrn_id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1345                         "sec" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1346                         "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1347                 ],
1348                 "indexes" => [
1349                         "PRIMARY" => ["id"],
1350                         "uid" => ["uid"],
1351                         "cid" => ["cid"],
1352                 ]
1353         ],
1354         "profile_field" => [
1355                 "comment" => "Custom profile fields",
1356                 "fields" => [
1357                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1358                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner user id"],
1359                         "order" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "1", "comment" => "Field ordering per user"],
1360                         "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this profile field - 0 = public"],
1361                         "label" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Label of the field"],
1362                         "value" => ["type" => "text", "comment" => "Value of the field"],
1363                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
1364                         "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
1365                 ],
1366                 "indexes" => [
1367                         "PRIMARY" => ["id"],
1368                         "uid" => ["uid"],
1369                         "order" => ["order"],
1370                         "psid" => ["psid"],
1371                 ]
1372         ],
1373         "push_subscriber" => [
1374                 "comment" => "Used for OStatus: Contains feed subscribers",
1375                 "fields" => [
1376                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1377                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1378                         "callback_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1379                         "topic" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1380                         "nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1381                         "push" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
1382                         "last_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last successful trial"],
1383                         "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
1384                         "renewed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last subscription renewal"],
1385                         "secret" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1386                 ],
1387                 "indexes" => [
1388                         "PRIMARY" => ["id"],
1389                         "next_try" => ["next_try"],
1390                         "uid" => ["uid"]
1391                 ]
1392         ],
1393         "register" => [
1394                 "comment" => "registrations requiring admin approval",
1395                 "fields" => [
1396                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1397                         "hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1398                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1399                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1400                         "password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1401                         "language" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
1402                         "note" => ["type" => "text", "comment" => ""],
1403                 ],
1404                 "indexes" => [
1405                         "PRIMARY" => ["id"],
1406                         "uid" => ["uid"],
1407                 ]
1408         ],
1409         "search" => [
1410                 "comment" => "",
1411                 "fields" => [
1412                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1413                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1414                         "term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1415                 ],
1416                 "indexes" => [
1417                         "PRIMARY" => ["id"],
1418                         "uid_term" => ["uid", "term(64)"],
1419                         "term" => ["term(64)"]
1420                 ]
1421         ],
1422         "session" => [
1423                 "comment" => "web session storage",
1424                 "fields" => [
1425                         "id" => ["type" => "bigint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1426                         "sid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
1427                         "data" => ["type" => "text", "comment" => ""],
1428                         "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1429                 ],
1430                 "indexes" => [
1431                         "PRIMARY" => ["id"],
1432                         "sid" => ["sid(64)"],
1433                         "expire" => ["expire"],
1434                 ]
1435         ],
1436         "storage" => [
1437                 "comment" => "Data stored by Database storage backend",
1438                 "fields" => [
1439                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1440                         "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"]
1441                 ],
1442                 "indexes" => [
1443                         "PRIMARY" => ["id"]
1444                 ]
1445         ],
1446         "tokens" => [
1447                 "comment" => "OAuth usage",
1448                 "fields" => [
1449                         "id" => ["type" => "varchar(40)", "not null" => "1", "primary" => "1", "comment" => ""],
1450                         "secret" => ["type" => "text", "comment" => ""],
1451                         "client_id" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "foreign" => ["clients" => "client_id"]],
1452                         "expires" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => ""],
1453                         "scope" => ["type" => "varchar(200)", "not null" => "1", "default" => "", "comment" => ""],
1454                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1455                 ],
1456                 "indexes" => [
1457                         "PRIMARY" => ["id"],
1458                         "client_id" => ["client_id"],
1459                         "uid" => ["uid"]
1460                 ]
1461         ],
1462         "userd" => [
1463                 "comment" => "Deleted usernames",
1464                 "fields" => [
1465                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1466                         "username" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
1467                 ],
1468                 "indexes" => [
1469                         "PRIMARY" => ["id"],
1470                         "username" => ["username(32)"],
1471                 ]
1472         ],
1473         "user-contact" => [
1474                 "comment" => "User specific public contact data",
1475                 "fields" => [
1476                         "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["contact" => "id"], "comment" => "Contact id of the linked public contact"],
1477                         "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1478                         "blocked" => ["type" => "boolean", "comment" => "Contact is completely blocked for this user"],
1479                         "ignored" => ["type" => "boolean", "comment" => "Posts from this contact are ignored"],
1480                         "collapsed" => ["type" => "boolean", "comment" => "Posts from this contact are collapsed"]
1481                 ],
1482                 "indexes" => [
1483                         "PRIMARY" => ["uid", "cid"],
1484                         "cid" => ["cid"],
1485                 ]
1486         ],
1487         "worker-ipc" => [
1488                 "comment" => "Inter process communication between the frontend and the worker",
1489                 "fields" => [
1490                         "key" => ["type" => "int", "not null" => "1", "primary" => "1", "comment" => ""],
1491                         "jobs" => ["type" => "boolean", "comment" => "Flag for outstanding jobs"],
1492                 ],
1493                 "indexes" => [
1494                         "PRIMARY" => ["key"],
1495                 ],
1496                 "engine" => "MEMORY",
1497         ],
1498         "workerqueue" => [
1499                 "comment" => "Background tasks queue entries",
1500                 "fields" => [
1501                         "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
1502                         "command" => ["type" => "varchar(100)", "comment" => "Task command"],
1503                         "parameter" => ["type" => "mediumtext", "comment" => "Task parameter"],
1504                         "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Task priority"],
1505                         "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date"],
1506                         "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
1507                         "executed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Execution date"],
1508                         "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
1509                         "retrial" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
1510                         "done" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marked 1 when the task was done - will be deleted later"],
1511                 ],
1512                 "indexes" => [
1513                         "PRIMARY" => ["id"],
1514                         "command" => ["command"],
1515                         "done_command_parameter" => ["done", "command", "parameter(64)"],
1516                         "done_executed" => ["done", "executed"],
1517                         "done_priority_retrial_created" => ["done", "priority", "retrial", "created"],
1518                         "done_priority_next_try" => ["done", "priority", "next_try"],
1519                         "done_pid_next_try" => ["done", "pid", "next_try"],
1520                         "done_pid_retrial" => ["done", "pid", "retrial"],
1521                         "done_pid_priority_created" => ["done", "pid", "priority", "created"]
1522                 ]
1523         ],
1524 ];