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