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