3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
20 * Main database structure configuration file.
22 * Here are described all the tables, fields and indexes Friendica needs to work.
23 * The entry order is mostly alphabetic - with the exception of tables that are used in foreign keys.
25 * Syntax (braces indicate optionale values):
27 * "comment" => "Description of the table",
30 * "type" => "<field type>{(<field size>)} <unsigned>",
32 * {"extra" => "auto_increment",}
33 * {"default" => "<default value>",}
34 * {"default" => NULL_DATE,} (for datetime fields)
36 * {"foreign|relation" => ["<foreign key table name>" => "<foreign key field name>"],}
37 * "comment" => "Description of the fields"
42 * "PRIMARY" => ["<primary key field name>", ...],
43 * "<index name>" => [{"UNIQUE",} "<field name>{(<key size>)}", ...]
48 * Whenever possible prefer "foreign" before "relation" with the foreign keys.
49 * "foreign" adds true foreign keys on the database level, while "relation" is just an indicator of a table relation without any consequences
51 * If you need to make any change, make sure to increment the DB_UPDATE_VERSION constant value below.
55 use Friendica\Database\DBA;
57 if (!defined('DB_UPDATE_VERSION')) {
58 define('DB_UPDATE_VERSION', 1481);
64 "comment" => "Global servers",
66 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
67 "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
68 "nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
69 "version" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
70 "site_name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
71 "info" => ["type" => "text", "comment" => ""],
72 "register_policy" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => ""],
73 "registered-users" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Number of registered users"],
74 "active-week-users" => ["type" => "int unsigned", "comment" => "Number of active users in the last week"],
75 "active-month-users" => ["type" => "int unsigned", "comment" => "Number of active users in the last month"],
76 "active-halfyear-users" => ["type" => "int unsigned", "comment" => "Number of active users in the last six month"],
77 "local-posts" => ["type" => "int unsigned", "comment" => "Number of local posts"],
78 "local-comments" => ["type" => "int unsigned", "comment" => "Number of local comments"],
79 "directory-type" => ["type" => "tinyint", "default" => "0", "comment" => "Type of directory service (Poco, Mastodon)"],
80 "poco" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
81 "noscrape" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
82 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
83 "protocol" => ["type" => "tinyint unsigned", "comment" => "The protocol of the server"],
84 "platform" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
85 "relay-subscribe" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Has the server subscribed to the relay system"],
86 "relay-scope" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => "The scope of messages that the server wants to get"],
87 "detection-method" => ["type" => "tinyint unsigned", "comment" => "Method that had been used to detect that server"],
88 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
89 "last_poco_query" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
90 "last_contact" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Last successful connection request"],
91 "last_failure" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Last failed connection request"],
92 "failed" => ["type" => "boolean", "comment" => "Connection failed"],
93 "next_contact" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Next connection request"],
97 "nurl" => ["UNIQUE", "nurl(190)"],
98 "next_contact" => ["next_contact"],
99 "network" => ["network"],
103 "comment" => "The local users",
105 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
106 "parent-uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "The parent user that has full control about this user"],
107 "guid" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this user"],
108 "username" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Name that this user is known by"],
109 "password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "encrypted password"],
110 "legacy_password" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is the password hash double-hashed?"],
111 "nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "nick- and user name"],
112 "email" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "the users email address"],
113 "openid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
114 "timezone" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => "PHP-legal timezone"],
115 "language" => ["type" => "varchar(32)", "not null" => "1", "default" => "en", "comment" => "default language"],
116 "register_date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of registration"],
117 "login_date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of last login"],
118 "default-location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Default for item.location"],
119 "allow_location" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 allows to display the location"],
120 "theme" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "user theme preference"],
121 "pubkey" => ["type" => "text", "comment" => "RSA public key 4096 bit"],
122 "prvkey" => ["type" => "text", "comment" => "RSA private key 4096 bit"],
123 "spubkey" => ["type" => "text", "comment" => ""],
124 "sprvkey" => ["type" => "text", "comment" => ""],
125 "verified" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "user is verified through email"],
126 "blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 for user is blocked"],
127 "blockwall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to post to the profile page of the user"],
128 "hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide profile details from unkown viewers"],
129 "blocktags" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to tag the post of this user"],
130 "unkmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Permit unknown people to send private mails to this user"],
131 "cntunkmail" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
132 "notify-flags" => ["type" => "smallint unsigned", "not null" => "1", "default" => "65535", "comment" => "email notification options"],
133 "page-flags" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "page/profile type"],
134 "account-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
135 "prvnets" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
136 "pwdreset" => ["type" => "varchar(255)", "comment" => "Password reset request token"],
137 "pwdreset_time" => ["type" => "datetime", "comment" => "Timestamp of the last password reset request"],
138 "maxreq" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
139 "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
140 "account_removed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if 1 the account is removed"],
141 "account_expired" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
142 "account_expires_on" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp when account expires and will be deleted"],
143 "expire_notification_sent" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of last warning of account expiration"],
144 "def_gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
145 "allow_cid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
146 "allow_gid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
147 "deny_cid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
148 "deny_gid" => ["type" => "mediumtext", "comment" => "default permission for this user"],
149 "openidserver" => ["type" => "text", "comment" => ""],
152 "PRIMARY" => ["uid"],
153 "nickname" => ["nickname(32)"],
154 "parent-uid" => ["parent-uid"],
156 "email" => ["email(64)"],
160 "comment" => "URI and GUID for items",
162 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
163 "uri" => ["type" => "varbinary(255)", "not null" => "1", "comment" => "URI of an item"],
164 "guid" => ["type" => "varbinary(255)", "comment" => "A unique identifier for an item"]
168 "uri" => ["UNIQUE", "uri"],
173 "comment" => "contact table",
175 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
176 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
177 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
178 "updated" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Date of last contact update"],
179 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network of the contact"],
180 "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Name that this contact is known by"],
181 "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Nick- and user name of the contact"],
182 "location" => ["type" => "varchar(255)", "default" => "", "comment" => ""],
183 "about" => ["type" => "text", "comment" => ""],
184 "keywords" => ["type" => "text", "comment" => "public keywords (interests) of the contact"],
185 "xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
186 "matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
187 "avatar" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
188 "header" => ["type" => "varchar(255)", "comment" => "Header picture"],
189 "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
190 "nurl" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
191 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
192 "addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
193 "alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
194 "pubkey" => ["type" => "text", "comment" => "RSA public key 4096 bit"],
195 "prvkey" => ["type" => "text", "comment" => "RSA private key 4096 bit"],
196 "batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
197 "notify" => ["type" => "varchar(255)", "comment" => ""],
198 "poll" => ["type" => "varchar(255)", "comment" => ""],
199 "subscribe" => ["type" => "varchar(255)", "comment" => ""],
200 "last-update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last try to update the contact info"],
201 "next-update" => ["type" => "datetime", "comment" => "Next connection request"],
202 "success_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful contact update"],
203 "failure_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last failed update"],
204 "failed" => ["type" => "boolean", "comment" => "Connection failed"],
205 "term-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
206 "last-item" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "date of the last post"],
207 "last-discovery" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "date of the last follower discovery"],
208 "local-data" => ["type" => "boolean", "comment" => "Is true when there are posts with this contact on the system"],
209 "blocked" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "Node-wide block status"],
210 "block_reason" => ["type" => "text", "comment" => "Node-wide block reason"],
211 "readonly" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "posts of the contact are readonly"],
212 "contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Person, organisation, news, community, relay"],
213 "manually-approve" => ["type" => "boolean", "comment" => "Contact requests have to be approved manually"],
214 "archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
215 "unsearchable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact prefers to not be searchable"],
216 "sensitive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact posts sensitive content"],
217 "baseurl" => ["type" => "varchar(255)", "default" => "", "comment" => "baseurl of the contact"],
218 "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
219 "bd" => ["type" => "date", "not null" => "1", "default" => DBA::NULL_DATE, "comment" => ""],
220 // User depending fields
221 "reason" => ["type" => "text", "comment" => ""],
222 "self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 if the contact is the user him/her self"],
223 "remote_self" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
224 "rel" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "The kind of the relation between the user and the contact"],
225 "protocol" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Protocol of the contact"],
226 "subhub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
227 "hub-verify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
228 "rating" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Automatically detected feed poll frequency"],
229 "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Feed poll priority"],
230 "attag" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
231 "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
232 "pending" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "Contact request is pending"],
233 "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Contact has been deleted"],
234 "info" => ["type" => "mediumtext", "comment" => ""],
235 "notify_new_posts" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
236 "fetch_further_information" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
237 "ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
238 // Deprecated, but still in use
239 "photo" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo of the contact"],
240 "thumb" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo (thumb size)"],
241 "micro" => ["type" => "varchar(255)", "default" => "", "comment" => "Link to the profile photo (micro size)"],
242 "name-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
243 "uri-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
244 "avatar-date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
245 "request" => ["type" => "varchar(255)", "comment" => ""],
246 "confirm" => ["type" => "varchar(255)", "comment" => ""],
247 "poco" => ["type" => "varchar(255)", "comment" => ""],
248 "writable" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
249 "forum" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a forum. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = false instead"],
250 "prv" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "contact is a private group. Deprecated, use 'contact-type' = 'community' and 'manually-approve' = true instead"],
251 "bdyear" => ["type" => "varchar(4)", "not null" => "1", "default" => "", "comment" => ""],
252 // Deprecated fields that aren't in use anymore
253 "site-pubkey" => ["type" => "text", "comment" => "Deprecated"],
254 "gender" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
255 "duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
256 "issued-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
257 "dfrn-id" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Deprecated"],
258 "aes_allow" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
259 "ret-aes" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
260 "usehub" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
261 "closeness" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "99", "comment" => "Deprecated"],
262 "profile-id" => ["type" => "int unsigned", "comment" => "Deprecated"],
266 "uid_name" => ["uid", "name(190)"],
267 "self_uid" => ["self", "uid"],
268 "alias_uid" => ["alias(128)", "uid"],
269 "pending_uid" => ["pending", "uid"],
270 "blocked_uid" => ["blocked", "uid"],
271 "uid_rel_network_poll" => ["uid", "rel", "network", "poll(64)", "archive"],
272 "uid_network_batch" => ["uid", "network", "batch(64)"],
273 "batch_contact-type" => ["batch(64)", "contact-type"],
274 "addr_uid" => ["addr(128)", "uid"],
275 "nurl_uid" => ["nurl(128)", "uid"],
276 "nick_uid" => ["nick(128)", "uid"],
277 "attag_uid" => ["attag(96)", "uid"],
278 "network_uid_lastupdate" => ["network", "uid", "last-update"],
279 "uid_network_self_lastupdate" => ["uid", "network", "self", "last-update"],
280 "next-update" => ["next-update"],
281 "local-data-next-update" => ["local-data", "next-update"],
282 "uid_lastitem" => ["uid", "last-item"],
283 "baseurl" => ["baseurl(64)"],
284 "uid_contact-type" => ["uid", "contact-type"],
285 "uid_self_contact-type" => ["uid", "self", "contact-type"],
286 "self_network_uid" => ["self", "network", "uid"],
287 "gsid_uid_failed" => ["gsid", "uid", "failed"],
288 "uri-id" => ["uri-id"],
292 "comment" => "tags and mentions",
294 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
295 "name" => ["type" => "varchar(96)", "not null" => "1", "default" => "", "comment" => ""],
296 "url" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
297 "type" => ["type" => "tinyint unsigned", "comment" => "Type of the tag (Unknown, General Collection, Follower Collection or Account)"],
301 "type_name_url" => ["UNIQUE", "name", "url"],
308 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
309 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner id of this permission set"],
310 "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
311 "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
312 "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
313 "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
317 "uid_allow_cid_allow_gid_deny_cid_deny_gid" => ["uid", "allow_cid(50)", "allow_gid(30)", "deny_cid(50)", "deny_gid(30)"],
321 "comment" => "Activity Verbs",
323 "id" => ["type" => "smallint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
324 "name" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""]
332 "2fa_app_specific_password" => [
333 "comment" => "Two-factor app-specific _password",
335 "id" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Password ID for revocation"],
336 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
337 "description" => ["type" => "varchar(255)", "comment" => "Description of the usage of the password"],
338 "hashed_password" => ["type" => "varchar(255)", "not null" => "1", "comment" => "Hashed password"],
339 "generated" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the password was generated"],
340 "last_used" => ["type" => "datetime", "comment" => "Datetime the password was last used"],
344 "uid_description" => ["uid", "description(190)"],
347 "2fa_recovery_codes" => [
348 "comment" => "Two-factor authentication recovery codes",
350 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
351 "code" => ["type" => "varchar(50)", "not null" => "1", "primary" => "1", "comment" => "Recovery code string"],
352 "generated" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the code was generated"],
353 "used" => ["type" => "datetime", "comment" => "Datetime the code was used"],
356 "PRIMARY" => ["uid", "code"]
359 "2fa_trusted_browser" => [
360 "comment" => "Two-factor authentication trusted browsers",
362 "cookie_hash" => ["type" => "varchar(80)", "not null" => "1", "primary" => "1", "comment" => "Trusted cookie hash"],
363 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
364 "user_agent" => ["type" => "text", "comment" => "User agent string"],
365 "trusted" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "Whenever this browser should be trusted or not"],
366 "created" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the trusted browser was recorded"],
367 "last_used" => ["type" => "datetime", "comment" => "Datetime the trusted browser was last used"],
370 "PRIMARY" => ["cookie_hash"],
375 "comment" => "registered addons",
377 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
378 "name" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "addon base (file)name"],
379 "version" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "currently unused"],
380 "installed" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "currently always 1"],
381 "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "currently unused"],
382 "timestamp" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "file timestamp to check for reloads"],
383 "plugin_admin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 = has admin config, 0 = has no admin config"],
387 "installed_name" => ["installed", "name"],
388 "name" => ["UNIQUE", "name"],
392 "comment" => "ActivityPub compatible contacts - used in the ActivityPub implementation",
394 "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
395 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
396 "uuid" => ["type" => "varchar(255)", "comment" => ""],
397 "type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
398 "following" => ["type" => "varchar(255)", "comment" => ""],
399 "followers" => ["type" => "varchar(255)", "comment" => ""],
400 "inbox" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
401 "outbox" => ["type" => "varchar(255)", "comment" => ""],
402 "sharedinbox" => ["type" => "varchar(255)", "comment" => ""],
403 "featured" => ["type" => "varchar(255)", "comment" => "Address for the collection of featured posts"],
404 "featured-tags" => ["type" => "varchar(255)", "comment" => "Address for the collection of featured tags"],
405 "manually-approve" => ["type" => "boolean", "comment" => ""],
406 "discoverable" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is published in their directory"],
407 "suspended" => ["type" => "boolean", "comment" => "Mastodon extension: true if profile is suspended"],
408 "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
409 "name" => ["type" => "varchar(255)", "comment" => ""],
410 "about" => ["type" => "text", "comment" => ""],
411 "xmpp" => ["type" => "varchar(255)", "comment" => "XMPP address"],
412 "matrix" => ["type" => "varchar(255)", "comment" => "Matrix address"],
413 "photo" => ["type" => "varchar(255)", "comment" => ""],
414 "header" => ["type" => "varchar(255)", "comment" => "Header picture"],
415 "addr" => ["type" => "varchar(255)", "comment" => ""],
416 "alias" => ["type" => "varchar(255)", "comment" => ""],
417 "pubkey" => ["type" => "text", "comment" => ""],
418 "subscribe" => ["type" => "varchar(255)", "comment" => ""],
419 "baseurl" => ["type" => "varchar(255)", "comment" => "baseurl of the ap contact"],
420 "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"],
421 "generator" => ["type" => "varchar(255)", "comment" => "Name of the contact's system"],
422 "following_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of following contacts"],
423 "followers_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of followers"],
424 "statuses_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of posts"],
425 "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
428 "PRIMARY" => ["url"],
429 "addr" => ["addr(32)"],
430 "alias" => ["alias(190)"],
431 "followers" => ["followers(190)"],
432 "baseurl" => ["baseurl(190)"],
433 "sharedinbox" => ["sharedinbox(190)"],
435 "uri-id" => ["UNIQUE", "uri-id"],
439 "comment" => "OAuth application",
441 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
442 "client_id" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
443 "client_secret" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
444 "name" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
445 "redirect_uri" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
446 "website" => ["type" => "varchar(255)", "comment" => ""],
447 "scopes" => ["type" => "varchar(255)", "comment" => ""],
448 "read" => ["type" => "boolean", "comment" => "Read scope"],
449 "write" => ["type" => "boolean", "comment" => "Write scope"],
450 "follow" => ["type" => "boolean", "comment" => "Follow scope"],
451 "push" => ["type" => "boolean", "comment" => "Push scope"],
455 "client_id" => ["UNIQUE", "client_id"]
458 "application-marker" => [
459 "comment" => "Timeline marker",
461 "application-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["application" => "id"], "comment" => ""],
462 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
463 "timeline" => ["type" => "varchar(64)", "not null" => "1", "primary" => "1", "comment" => "Marker (home, notifications)"],
464 "last_read_id" => ["type" => "varchar(255)", "comment" => "Marker id for the timeline"],
465 "version" => ["type" => "smallint unsigned", "comment" => "Version number"],
466 "updated_at" => ["type" => "datetime", "comment" => "creation time"],
469 "PRIMARY" => ["application-id", "uid", "timeline"],
473 "application-token" => [
474 "comment" => "OAuth user token",
476 "application-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["application" => "id"], "comment" => ""],
477 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
478 "code" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
479 "access_token" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
480 "created_at" => ["type" => "datetime", "not null" => "1", "comment" => "creation time"],
481 "scopes" => ["type" => "varchar(255)", "comment" => ""],
482 "read" => ["type" => "boolean", "comment" => "Read scope"],
483 "write" => ["type" => "boolean", "comment" => "Write scope"],
484 "follow" => ["type" => "boolean", "comment" => "Follow scope"],
485 "push" => ["type" => "boolean", "comment" => "Push scope"],
488 "PRIMARY" => ["application-id", "uid"],
489 "uid_id" => ["uid", "application-id"],
493 "comment" => "file attachments",
495 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "generated index"],
496 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
497 "hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "hash"],
498 "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "filename of original"],
499 "filetype" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => "mimetype"],
500 "filesize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "size in bytes"],
501 "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"],
502 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
503 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
504 "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>"],
505 "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
506 "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
507 "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
508 "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
509 "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
517 "comment" => "Stores temporary data",
519 "k" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "cache key"],
520 "v" => ["type" => "mediumtext", "comment" => "cached serialized value"],
521 "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
522 "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache insertion"],
526 "k_expires" => ["k", "expires"],
530 "comment" => "main configuration storage",
532 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
533 "cat" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
534 "k" => ["type" => "varbinary(50)", "not null" => "1", "default" => "", "comment" => ""],
535 "v" => ["type" => "mediumtext", "comment" => ""],
539 "cat_k" => ["UNIQUE", "cat", "k"],
542 "contact-relation" => [
543 "comment" => "Contact relations",
545 "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "contact the related contact had interacted with"],
546 "relation-cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "primary" => "1", "comment" => "related contact who had interacted with the contact"],
547 "last-interaction" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last interaction"],
548 "follow-updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last update of the contact relationship"],
549 "follows" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
552 "PRIMARY" => ["cid", "relation-cid"],
553 "relation-cid" => ["relation-cid"],
557 "comment" => "private messages",
559 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
560 "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this conversation"],
561 "recips" => ["type" => "text", "comment" => "sender_handle;recipient_handle"],
562 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
563 "creator" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "handle of creator"],
564 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation timestamp"],
565 "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "edited timestamp"],
566 "subject" => ["type" => "text", "comment" => "subject of initial message"],
574 "comment" => "Background tasks queue entries",
576 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
577 "command" => ["type" => "varchar(100)", "comment" => "Task command"],
578 "parameter" => ["type" => "mediumtext", "comment" => "Task parameter"],
579 "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Task priority"],
580 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date"],
581 "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
582 "executed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Execution date"],
583 "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
584 "retrial" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
585 "done" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marked 1 when the task was done - will be deleted later"],
589 "command" => ["command"],
590 "done_command_parameter" => ["done", "command", "parameter(64)"],
591 "done_executed" => ["done", "executed"],
592 "done_priority_retrial_created" => ["done", "priority", "retrial", "created"],
593 "done_priority_next_try" => ["done", "priority", "next_try"],
594 "done_pid_next_try" => ["done", "pid", "next_try"],
595 "done_pid_retrial" => ["done", "pid", "retrial"],
596 "done_pid_priority_created" => ["done", "pid", "priority", "created"]
600 "comment" => "Posts that are about to be distributed at a later time",
602 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
603 "uri" => ["type" => "varchar(255)", "comment" => "URI of the post that will be distributed later"],
604 "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
605 "delayed" => ["type" => "datetime", "comment" => "delay time"],
606 "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
610 "uid_uri" => ["UNIQUE", "uid", "uri(190)"],
614 "diaspora-interaction" => [
615 "comment" => "Signed Diaspora Interaction",
617 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
618 "interaction" => ["type" => "mediumtext", "comment" => "The Diaspora interaction"]
621 "PRIMARY" => ["uri-id"]
625 "comment" => "ActivityPub endpoints - used in the ActivityPub implementation",
627 "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the contact"],
628 "type" => ["type" => "varchar(20)", "not null" => "1", "comment" => ""],
629 "owner-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the apcontact url"],
632 "PRIMARY" => ["url"],
633 "owner-uri-id_type" => ["UNIQUE", "owner-uri-id", "type"],
637 "comment" => "Events",
639 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
640 "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
641 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
642 "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact_id (ID of the contact in contact table)"],
643 "uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
644 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the event uri"],
645 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
646 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
647 "start" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event start time"],
648 "finish" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "event end time"],
649 "summary" => ["type" => "text", "comment" => "short description or title of the event"],
650 "desc" => ["type" => "text", "comment" => "event description"],
651 "location" => ["type" => "text", "comment" => "event location"],
652 "type" => ["type" => "varchar(20)", "not null" => "1", "default" => "", "comment" => "event or birthday"],
653 "nofinish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if event does have no end this is 1"],
654 "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "0 or 1"],
655 "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
656 "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
657 "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
658 "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
662 "uid_start" => ["uid", "start"],
664 "uri-id" => ["uri-id"],
668 "comment" => "Diaspora compatible contacts - used in the Diaspora implementation",
670 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
671 "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "unique id"],
672 "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
673 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the fcontact url"],
674 "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
675 "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
676 "request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
677 "nick" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
678 "addr" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
679 "batch" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
680 "notify" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
681 "poll" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
682 "confirm" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
683 "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
684 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
685 "alias" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
686 "pubkey" => ["type" => "text", "comment" => ""],
687 "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
688 "interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interactes with"],
689 "interacted_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts that interacted with this contact"],
690 "post_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of posts and comments"],
694 "addr" => ["addr(32)"],
695 "url" => ["UNIQUE", "url(190)"],
696 "uri-id" => ["UNIQUE", "uri-id"],
702 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
703 "url" => ["type" => "varbinary(255)", "comment" => "url that awaiting to be fetched"],
704 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of the fetch request"],
705 "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"], ],
708 "url" => ["UNIQUE", "url"],
709 "created" => ["created"],
714 "comment" => "friend suggestion stuff",
716 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => ""],
717 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
718 "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
719 "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
720 "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
721 "request" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
722 "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
723 "note" => ["type" => "text", "comment" => ""],
724 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
733 "comment" => "privacy groups, group info",
735 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
736 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
737 "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the member list is not private"],
738 "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 indicates the group has been deleted"],
739 "cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Contact id of forum. When this field is filled then the members are synced automatically."],
740 "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "human readable name of group"],
749 "comment" => "privacy groups, member info",
751 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
752 "gid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["group" => "id"], "comment" => "groups.id of the associated group"],
753 "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id of the member assigned to the associated group"],
757 "contactid" => ["contact-id"],
758 "gid_contactid" => ["UNIQUE", "gid", "contact-id"],
762 "comment" => "Tags that the server has subscribed",
764 "gserver-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["gserver" => "id"], "primary" => "1",
765 "comment" => "The id of the gserver"],
766 "tag" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "primary" => "1", "comment" => "Tag that the server has subscribed"],
769 "PRIMARY" => ["gserver-id", "tag"],
774 "comment" => "addon hook registry",
776 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
777 "hook" => ["type" => "varbinary(100)", "not null" => "1", "default" => "", "comment" => "name of hook"],
778 "file" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "relative filename of hook handler"],
779 "function" => ["type" => "varbinary(200)", "not null" => "1", "default" => "", "comment" => "function name of hook handler"],
780 "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"],
784 "priority" => ["priority"],
785 "hook_file_function" => ["UNIQUE", "hook", "file", "function"],
789 "comment" => "Incoming activity",
791 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
792 "activity-id" => ["type" => "varbinary(255)", "comment" => "id of the incoming activity"],
793 "object-id" => ["type" => "varbinary(255)", "comment" => ""],
794 "in-reply-to-id" => ["type" => "varbinary(255)", "comment" => ""],
795 "conversation" => ["type" => "varbinary(255)", "comment" => ""],
796 "type" => ["type" => "varchar(64)", "comment" => "Type of the activity"],
797 "object-type" => ["type" => "varchar(64)", "comment" => "Type of the object activity"],
798 "object-object-type" => ["type" => "varchar(64)", "comment" => "Type of the object's object activity"],
799 "received" => ["type" => "datetime", "comment" => "Receiving date"],
800 "activity" => ["type" => "mediumtext", "comment" => "The JSON activity"],
801 "signer" => ["type" => "varchar(255)", "comment" => ""],
802 "push" => ["type" => "boolean", "comment" => "Is the entry pushed or have pulled it?"],
803 "trust" => ["type" => "boolean", "comment" => "Do we trust this entry?"],
804 "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"], ],
807 "activity-id" => ["UNIQUE", "activity-id"],
808 "object-id" => ["object-id"],
809 "received" => ["received"],
813 "inbox-entry-receiver" => [
814 "comment" => "Receiver for the incoming activity",
816 "queue-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["inbox-entry" => "id"], "comment" => ""],
817 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
820 "PRIMARY" => ["queue-id", "uid"],
825 "comment" => "Status of ActivityPub inboxes",
827 "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "URL of the inbox"],
828 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
829 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date of this entry"],
830 "success" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last successful delivery"],
831 "failure" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of the last failed delivery"],
832 "previous" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Previous delivery date"],
833 "archive" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is the inbox archived?"],
834 "shared" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Is it a shared inbox?"]
837 "PRIMARY" => ["url"],
838 "uri-id" => ["uri-id"],
844 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
845 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
846 "fid" => ["type" => "int unsigned", "relation" => ["fcontact" => "id"], "comment" => "deprecated"],
847 "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => ""],
848 "suggest-cid" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Suggested contact"],
849 "knowyou" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
850 "duplex" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
851 "note" => ["type" => "text", "comment" => ""],
852 "hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
853 "datetime" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
854 "blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
855 "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
859 "contact-id" => ["contact-id"],
860 "suggest-cid" => ["suggest-cid"],
867 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
868 "name" => ["type" => "varchar(128)", "not null" => "1", "default" => "", "comment" => ""],
869 "locked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
870 "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process ID"],
871 "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
875 "name_expires" => ["name", "expires"]
879 "comment" => "private messages",
881 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
882 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
883 "guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
884 "from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
885 "from-photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
886 "from-url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
887 "contact-id" => ["type" => "varchar(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
888 "author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of the mail"],
889 "convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],
890 "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
891 "body" => ["type" => "mediumtext", "comment" => ""],
892 "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if message visited it is 1"],
893 "reply" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
894 "replied" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
895 "unknown" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "if sender not in the contact table this is 1"],
896 "uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
897 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related mail"],
898 "parent-uri" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
899 "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related mail"],
900 "thr-parent" => ["type" => "varchar(255)", "comment" => ""],
901 "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
902 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time of the private message"],
906 "uid_seen" => ["uid", "seen"],
907 "convid" => ["convid"],
908 "uri" => ["uri(64)"],
909 "parent-uri" => ["parent-uri(64)"],
910 "contactid" => ["contact-id(32)"],
911 "author-id" => ["author-id"],
912 "uri-id" => ["uri-id"],
913 "parent-uri-id" => ["parent-uri-id"],
914 "thr-parent-id" => ["thr-parent-id"],
918 "comment" => "Mail account data for fetching mails",
920 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
921 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
922 "server" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
923 "port" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
924 "ssltype" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
925 "mailbox" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
926 "user" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
927 "pass" => ["type" => "text", "comment" => ""],
928 "reply_to" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
929 "action" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
930 "movetofolder" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
931 "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
932 "last_check" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
940 "comment" => "table of accounts that can manage each other",
942 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
943 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
944 "mid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
948 "uid_mid" => ["UNIQUE", "uid", "mid"],
953 "comment" => "notifications",
955 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
956 "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
957 "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
958 "type" => ["type" => "smallint unsigned", "comment" => ""],
959 "actor-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Link to the contact table with uid=0 of the actor that caused the notification"],
960 "target-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
961 "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
962 "created" => ["type" => "datetime", "comment" => ""],
963 "seen" => ["type" => "boolean", "default" => "0", "comment" => "Seen on the desktop"],
964 "dismissed" => ["type" => "boolean", "default" => "0", "comment" => "Dismissed via the API"],
968 "uid_vid_type_actor-id_target-uri-id" => ["UNIQUE", "uid", "vid", "type", "actor-id", "target-uri-id"],
970 "actor-id" => ["actor-id"],
971 "target-uri-id" => ["target-uri-id"],
972 "parent-uri-id" => ["parent-uri-id"],
973 "seen_uid" => ["seen", "uid"],
974 "uid_type_parent-uri-id_actor-id" => ["uid", "type", "parent-uri-id", "actor-id"],
978 "comment" => "[Deprecated] User notifications",
980 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
981 "type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
982 "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
983 "url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
984 "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
985 "date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
986 "msg" => ["type" => "mediumtext", "comment" => ""],
987 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
988 "link" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
989 "iid" => ["type" => "int unsigned", "comment" => ""],
990 "parent" => ["type" => "int unsigned", "comment" => ""],
991 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the related post"],
992 "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
993 "seen" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
994 "verb" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""],
995 "otype" => ["type" => "varchar(10)", "not null" => "1", "default" => "", "comment" => ""],
996 "name_cache" => ["type" => "tinytext", "comment" => "Cached bbcode parsing of name"],
997 "msg_cache" => ["type" => "mediumtext", "comment" => "Cached bbcode parsing of msg"]
1000 "PRIMARY" => ["id"],
1001 "seen_uid_date" => ["seen", "uid", "date"],
1002 "uid_date" => ["uid", "date"],
1003 "uid_type_link" => ["uid", "type", "link(190)"],
1004 "uri-id" => ["uri-id"],
1005 "parent-uri-id" => ["parent-uri-id"],
1008 "notify-threads" => [
1011 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1012 "notify-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["notify" => "id"], "comment" => ""],
1013 "master-parent-item" => ["type" => "int unsigned", "comment" => "Deprecated"],
1014 "master-parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"],
1015 "parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1016 "receiver-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"],
1017 "comment" => "User id"],
1020 "PRIMARY" => ["id"],
1021 "master-parent-uri-id" => ["master-parent-uri-id"],
1022 "receiver-uid" => ["receiver-uid"],
1023 "notify-id" => ["notify-id"],
1027 "comment" => "cache for OEmbed queries",
1029 "url" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "page url"],
1030 "maxwidth" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "comment" => "Maximum width passed to Oembed"],
1031 "content" => ["type" => "mediumtext", "comment" => "OEmbed data of the page"],
1032 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1035 "PRIMARY" => ["url", "maxwidth"],
1036 "created" => ["created"],
1039 "openwebauth-token" => [
1040 "comment" => "Store OpenWebAuth token to verify contacts",
1042 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1043 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id - currently unused"],
1044 "type" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Verify type"],
1045 "token" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "A generated token"],
1046 "meta" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1047 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1050 "PRIMARY" => ["id"],
1055 "comment" => "cache for 'parse_url' queries",
1057 "url_hash" => ["type" => "binary(64)", "not null" => "1", "primary" => "1", "comment" => "page url hash"],
1058 "guessing" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the 'guessing' mode active?"],
1059 "oembed" => ["type" => "boolean", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "is the data the result of oembed?"],
1060 "url" => ["type" => "text", "not null" => "1", "comment" => "page url"],
1061 "content" => ["type" => "mediumtext", "comment" => "page data"],
1062 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of creation"],
1063 "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of expiration"],
1066 "PRIMARY" => ["url_hash", "guessing", "oembed"],
1067 "created" => ["created"],
1068 "expires" => ["expires"],
1072 "comment" => "personal (per user) configuration storage",
1074 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Primary key"],
1075 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1076 "cat" => ["type" => "varchar(50)", "not null" => "1", "default" => "", "comment" => "Category"],
1077 "k" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "Key"],
1078 "v" => ["type" => "mediumtext", "comment" => "Value"],
1081 "PRIMARY" => ["id"],
1082 "uid_cat_k" => ["UNIQUE", "uid", "cat", "k"],
1086 "comment" => "photo storage",
1088 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1089 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid", "on delete" => "restrict"], "comment" => "Owner User id"],
1090 "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "contact.id"],
1091 "guid" => ["type" => "char(16)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this photo"],
1092 "resource-id" => ["type" => "char(32)", "not null" => "1", "default" => "", "comment" => ""],
1093 "hash" => ["type" => "char(32)", "comment" => "hash value of the photo"],
1094 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation date"],
1095 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edited date"],
1096 "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1097 "desc" => ["type" => "text", "comment" => ""],
1098 "album" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "The name of the album to which the photo belongs"],
1099 "photo-type" => ["type" => "tinyint unsigned", "comment" => "User avatar, user banner, contact avatar, contact banner or default"],
1100 "filename" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1101 "type" => ["type" => "varchar(30)", "not null" => "1", "default" => "image/jpeg"],
1102 "height" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1103 "width" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1104 "datasize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1105 "data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
1106 "scale" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1107 "profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1108 "allow_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed contact.id '<19><78>'"],
1109 "allow_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of allowed groups"],
1110 "deny_cid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied contact.id"],
1111 "deny_gid" => ["type" => "mediumtext", "comment" => "Access Control - list of denied groups"],
1112 "accessible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Make photo publicly accessible, ignoring permissions"],
1113 "backend-class" => ["type" => "tinytext", "comment" => "Storage backend class"],
1114 "backend-ref" => ["type" => "text", "comment" => "Storage backend data reference"],
1115 "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1118 "PRIMARY" => ["id"],
1119 "contactid" => ["contact-id"],
1120 "uid_contactid" => ["uid", "contact-id"],
1121 "uid_profile" => ["uid", "profile"],
1122 "uid_album_scale_created" => ["uid", "album(32)", "scale", "created"],
1123 "uid_album_resource-id_created" => ["uid", "album(32)", "resource-id", "created"],
1124 "resource-id" => ["resource-id"],
1125 "uid_photo-type" => ["uid", "photo-type"],
1129 "comment" => "Structure for all posts",
1131 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1132 "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1133 "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1134 "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1135 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1136 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1137 "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1138 "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1139 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1140 "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the owner of this item"],
1141 "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of this item"],
1142 "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1143 "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1144 "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1145 "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1146 "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1147 "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1148 "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"]
1151 "PRIMARY" => ["uri-id"],
1152 "parent-uri-id" => ["parent-uri-id"],
1153 "thr-parent-id" => ["thr-parent-id"],
1154 "external-id" => ["external-id"],
1155 "owner-id" => ["owner-id"],
1156 "author-id" => ["author-id"],
1157 "causer-id" => ["causer-id"],
1161 "post-activity" => [
1162 "comment" => "Original remote activity",
1164 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1165 "activity" => ["type" => "mediumtext", "comment" => "Original activity"],
1166 "received" => ["type" => "datetime", "comment" => ""],
1169 "PRIMARY" => ["uri-id"],
1172 "post-category" => [
1173 "comment" => "post relation to categories",
1175 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1176 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1177 "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1178 "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1181 "PRIMARY" => ["uri-id", "uid", "type", "tid"],
1183 "uid_uri-id" => ["uid", "uri-id"],
1186 "post-collection" => [
1187 "comment" => "Collection of posts",
1189 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1190 "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => "0 - Featured"],
1191 "author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Author of the featured post"],
1194 "PRIMARY" => ["uri-id", "type"],
1196 "author-id" => ["author-id"],
1200 "comment" => "Content for all posts",
1202 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1203 "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "item title"],
1204 "content-warning" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1205 "body" => ["type" => "mediumtext", "comment" => "item body content"],
1206 "raw-body" => ["type" => "mediumtext", "comment" => "Body without embedded media links"],
1207 "location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "text location where this item originated"],
1208 "coord" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "longitude/latitude pair representing location where this item originated"],
1209 "language" => ["type" => "text", "comment" => "Language information about this post"],
1210 "app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "application which generated this item"],
1211 "rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1212 "rendered-html" => ["type" => "mediumtext", "comment" => "item.body converted to html"],
1213 "object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams object type"],
1214 "object" => ["type" => "text", "comment" => "JSON encoded object structure unless it is an implied object (normal post)"],
1215 "target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
1216 "target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
1217 "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"],
1218 "plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
1221 "PRIMARY" => ["uri-id"],
1222 "plink" => ["plink(191)"],
1223 "resource-id" => ["resource-id"],
1224 "title-content-warning-body" => ["FULLTEXT", "title", "content-warning", "body"],
1227 "post-delivery" => [
1228 "comment" => "Delivery data for posts for the batch processing",
1230 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1231 "inbox-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of inbox url"],
1232 "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Delivering user"],
1233 "created" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => ""],
1234 "command" => ["type" => "varbinary(32)", "comment" => ""],
1235 "failed" => ["type" => "tinyint", "default" => 0, "comment" => "Number of times the delivery has failed"],
1236 "receivers" => ["type" => "mediumtext", "comment" => "JSON encoded array with the receiving contacts"],
1239 "PRIMARY" => ["uri-id", "inbox-id"],
1240 "inbox-id_created" => ["inbox-id", "created"],
1244 "post-delivery-data" => [
1245 "comment" => "Delivery data for items",
1247 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1248 "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"],
1249 "inform" => ["type" => "mediumtext", "comment" => "Additional receivers of the linked item"],
1250 "queue_count" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Initial number of delivery recipients, used as item.delivery_queue_count"],
1251 "queue_done" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries, used as item.delivery_queue_done"],
1252 "queue_failed" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of unsuccessful deliveries, used as item.delivery_queue_failed"],
1253 "activitypub" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via ActivityPub"],
1254 "dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via DFRN"],
1255 "legacy_dfrn" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via legacy DFRN"],
1256 "diaspora" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via Diaspora"],
1257 "ostatus" => ["type" => "mediumint", "not null" => "1", "default" => "0", "comment" => "Number of successful deliveries via OStatus"],
1260 "PRIMARY" => ["uri-id"],
1264 "comment" => "Post history",
1266 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1267 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "primary" => "1", "comment" => "Date of edit"],
1268 "title" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "item title"],
1269 "content-warning" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1270 "body" => ["type" => "mediumtext", "comment" => "item body content"],
1271 "raw-body" => ["type" => "mediumtext", "comment" => "Body without embedded media links"],
1272 "location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "text location where this item originated"],
1273 "coord" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "longitude/latitude pair representing location where this item originated"],
1274 "language" => ["type" => "text", "comment" => "Language information about this post"],
1275 "app" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "application which generated this item"],
1276 "rendered-hash" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1277 "rendered-html" => ["type" => "mediumtext", "comment" => "item.body converted to html"],
1278 "object-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams object type"],
1279 "object" => ["type" => "text", "comment" => "JSON encoded object structure unless it is an implied object (normal post)"],
1280 "target-type" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => "ActivityStreams target type if applicable (URI)"],
1281 "target" => ["type" => "text", "comment" => "JSON encoded target structure if used"],
1282 "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"],
1283 "plink" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "permalink or URL to a displayable copy of the message at its source"]
1286 "PRIMARY" => ["uri-id", "edited"],
1290 "comment" => "Post related external links",
1292 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1293 "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1294 "url" => ["type" => "varbinary(511)", "not null" => "1", "comment" => "External URL"],
1295 "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1298 "PRIMARY" => ["id"],
1299 "uri-id-url" => ["UNIQUE", "uri-id", "url"],
1303 "comment" => "Attached media",
1305 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1306 "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1307 "url" => ["type" => "varbinary(1024)", "not null" => "1", "comment" => "Media URL"],
1308 "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Media type"],
1309 "mimetype" => ["type" => "varchar(60)", "comment" => ""],
1310 "height" => ["type" => "smallint unsigned", "comment" => "Height of the media"],
1311 "width" => ["type" => "smallint unsigned", "comment" => "Width of the media"],
1312 "size" => ["type" => "bigint unsigned", "comment" => "Media size"],
1313 "preview" => ["type" => "varbinary(512)", "comment" => "Preview URL"],
1314 "preview-height" => ["type" => "smallint unsigned", "comment" => "Height of the preview picture"],
1315 "preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
1316 "description" => ["type" => "text", "comment" => ""],
1317 "name" => ["type" => "varchar(255)", "comment" => "Name of the media"],
1318 "author-url" => ["type" => "varbinary(255)", "comment" => "URL of the author of the media"],
1319 "author-name" => ["type" => "varchar(255)", "comment" => "Name of the author of the media"],
1320 "author-image" => ["type" => "varbinary(255)", "comment" => "Image of the author of the media"],
1321 "publisher-url" => ["type" => "varbinary(255)", "comment" => "URL of the publisher of the media"],
1322 "publisher-name" => ["type" => "varchar(255)", "comment" => "Name of the publisher of the media"],
1323 "publisher-image" => ["type" => "varbinary(255)", "comment" => "Image of the publisher of the media"],
1326 "PRIMARY" => ["id"],
1327 "uri-id-url" => ["UNIQUE", "uri-id", "url(512)"],
1328 "uri-id-id" => ["uri-id", "id"],
1331 "post-question" => [
1332 "comment" => "Question",
1334 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1335 "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1336 "multiple" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Multiple choice"],
1337 "voters" => ["type" => "int unsigned", "comment" => "Number of voters for this question"],
1338 "end-time" => ["type" => "datetime", "default" => DBA::NULL_DATETIME, "comment" => "Question end time"],
1341 "PRIMARY" => ["id"],
1342 "uri-id" => ["UNIQUE", "uri-id"],
1345 "post-question-option" => [
1346 "comment" => "Question option",
1348 "id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => "Id of the question"],
1349 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1350 "name" => ["type" => "varchar(255)", "comment" => "Name of the option"],
1351 "replies" => ["type" => "int unsigned", "comment" => "Number of replies for this question option"],
1354 "PRIMARY" => ["uri-id", "id"],
1358 "comment" => "post relation to tags",
1360 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1361 "type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "comment" => ""],
1362 "tid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["tag" => "id", "on delete" => "restrict"], "comment" => ""],
1363 "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Contact id of the mentioned public contact"],
1366 "PRIMARY" => ["uri-id", "type", "tid", "cid"],
1372 "comment" => "Thread related data",
1374 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1375 "conversation-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the conversation uri"],
1376 "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1377 "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1378 "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1379 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1380 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1381 "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1382 "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"],
1383 "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""]
1386 "PRIMARY" => ["uri-id"],
1387 "conversation-id" => ["conversation-id"],
1388 "owner-id" => ["owner-id"],
1389 "author-id" => ["author-id"],
1390 "causer-id" => ["causer-id"],
1391 "received" => ["received"],
1392 "commented" => ["commented"],
1396 "comment" => "User specific post data",
1398 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
1399 "uri-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1400 "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"],
1401 "thr-parent-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the thread parent uri"],
1402 "external-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the external uri"],
1403 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation timestamp."],
1404 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last edit (default is created)"],
1405 "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime"],
1406 "gravity" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1407 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => "Network from where the item comes from"],
1408 "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the owner of this item"],
1409 "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of this item"],
1410 "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1411 "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, image, article, ...)"],
1412 "post-reason" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Reason why the post arrived at the user"],
1413 "vid" => ["type" => "smallint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
1414 "private" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "0=public, 1=private, 2=unlisted"],
1415 "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1416 "visible" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1417 "deleted" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item has been marked for deletion"],
1418 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1419 "protocol" => ["type" => "tinyint unsigned", "comment" => "Protocol used to deliver the item for this user"],
1420 "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1421 "event-id" => ["type" => "int unsigned", "foreign" => ["event" => "id"], "comment" => "Used to link to the event.id"],
1422 "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1423 "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1424 "notification-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1425 "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1426 "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1427 "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1430 "PRIMARY" => ["id"],
1431 "uid_uri-id" => ["UNIQUE", "uid", "uri-id"],
1432 "uri-id" => ["uri-id"],
1433 "parent-uri-id" => ["parent-uri-id"],
1434 "thr-parent-id" => ["thr-parent-id"],
1435 "external-id" => ["external-id"],
1436 "owner-id" => ["owner-id"],
1437 "author-id" => ["author-id"],
1438 "causer-id" => ["causer-id"],
1440 "contact-id" => ["contact-id"],
1441 "event-id" => ["event-id"],
1443 "author-id_uid" => ["author-id", "uid"],
1444 "author-id_received" => ["author-id", "received"],
1445 "parent-uri-id_uid" => ["parent-uri-id", "uid"],
1446 "uid_contactid" => ["uid", "contact-id"],
1447 "uid_unseen_contactid" => ["uid", "unseen", "contact-id"],
1448 "uid_unseen" => ["uid", "unseen"],
1449 "uid_hidden_uri-id" => ["uid", "hidden", "uri-id"],
1452 "post-thread-user" => [
1453 "comment" => "Thread related data per user",
1455 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1456 "conversation-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the conversation uri"],
1457 "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
1458 "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item author"],
1459 "causer-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
1460 "network" => ["type" => "char(4)", "not null" => "1", "default" => "", "comment" => ""],
1461 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1462 "received" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1463 "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"],
1464 "commented" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1465 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1466 "pinned" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "deprecated"],
1467 "starred" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1468 "ignored" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Ignore updates for this thread"],
1469 "wall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "This item was posted to the wall of uid"],
1470 "mention" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1471 "pubmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
1472 "forum_mode" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Deprecated"],
1473 "contact-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id"], "comment" => "contact.id"],
1474 "unseen" => ["type" => "boolean", "not null" => "1", "default" => "1", "comment" => "post has not been seen"],
1475 "hidden" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Marker to hide the post from the user"],
1476 "origin" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "item originated at this site"],
1477 "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this post"],
1478 "post-user-id" => ["type" => "int unsigned", "foreign" => ["post-user" => "id"], "comment" => "Id of the post-user table"],
1481 "PRIMARY" => ["uid", "uri-id"],
1482 "uri-id" => ["uri-id"],
1483 "conversation-id" => ["conversation-id"],
1484 "owner-id" => ["owner-id"],
1485 "author-id" => ["author-id"],
1486 "causer-id" => ["causer-id"],
1488 "contact-id" => ["contact-id"],
1490 "post-user-id" => ["post-user-id"],
1491 "commented" => ["commented"],
1492 "uid_received" => ["uid", "received"],
1493 "uid_wall_received" => ["uid", "wall", "received"],
1494 "uid_commented" => ["uid", "commented"],
1495 "uid_starred" => ["uid", "starred"],
1496 "uid_mention" => ["uid", "mention"],
1499 "post-user-notification" => [
1500 "comment" => "User post notifications",
1502 "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
1503 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner id which owns this copy of the item"],
1504 "notification-type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1507 "PRIMARY" => ["uid", "uri-id"],
1508 "uri-id" => ["uri-id"],
1512 "comment" => "Currently running system processes",
1514 "pid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "comment" => "The ID of the process"],
1515 "hostname" => ["type" => "varchar(32)", "not null" => "1", "primary" => "1", "comment" => "The name of the host the process is ran on"],
1516 "command" => ["type" => "varbinary(32)", "not null" => "1", "default" => "", "comment" => ""],
1517 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1520 "PRIMARY" => ["pid", "hostname"],
1521 "command" => ["command"],
1525 "comment" => "user profiles data",
1527 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1528 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1529 "profile-name" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1530 "is-default" => ["type" => "boolean", "comment" => "Deprecated"],
1531 "hide-friends" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide friend list from viewers of this profile"],
1532 "name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1533 "pdesc" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1534 "dob" => ["type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00", "comment" => "Day of birth"],
1535 "address" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1536 "locality" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1537 "region" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1538 "postal-code" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => ""],
1539 "country-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1540 "hometown" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1541 "gender" => ["type" => "varchar(32)", "comment" => "Deprecated"],
1542 "marital" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1543 "with" => ["type" => "text", "comment" => "Deprecated"],
1544 "howlong" => ["type" => "datetime", "comment" => "Deprecated"],
1545 "sexual" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1546 "politic" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1547 "religion" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1548 "pub_keywords" => ["type" => "text", "comment" => ""],
1549 "prv_keywords" => ["type" => "text", "comment" => ""],
1550 "likes" => ["type" => "text", "comment" => "Deprecated"],
1551 "dislikes" => ["type" => "text", "comment" => "Deprecated"],
1552 "about" => ["type" => "text", "comment" => "Profile description"],
1553 "summary" => ["type" => "varchar(255)", "comment" => "Deprecated"],
1554 "music" => ["type" => "text", "comment" => "Deprecated"],
1555 "book" => ["type" => "text", "comment" => "Deprecated"],
1556 "tv" => ["type" => "text", "comment" => "Deprecated"],
1557 "film" => ["type" => "text", "comment" => "Deprecated"],
1558 "interest" => ["type" => "text", "comment" => "Deprecated"],
1559 "romance" => ["type" => "text", "comment" => "Deprecated"],
1560 "work" => ["type" => "text", "comment" => "Deprecated"],
1561 "education" => ["type" => "text", "comment" => "Deprecated"],
1562 "contact" => ["type" => "text", "comment" => "Deprecated"],
1563 "homepage" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1564 "xmpp" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "XMPP address"],
1565 "matrix" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Matrix address"],
1566 "photo" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1567 "thumb" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1568 "publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish default profile in local directory"],
1569 "net-publish" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "publish profile in global directory"],
1572 "PRIMARY" => ["id"],
1573 "uid_is-default" => ["uid", "is-default"],
1574 "pub_keywords" => ["FULLTEXT", "pub_keywords"],
1577 "profile_field" => [
1578 "comment" => "Custom profile fields",
1580 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1581 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner user id"],
1582 "order" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "1", "comment" => "Field ordering per user"],
1583 "psid" => ["type" => "int unsigned", "foreign" => ["permissionset" => "id", "on delete" => "restrict"], "comment" => "ID of the permission set of this profile field - 0 = public"],
1584 "label" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Label of the field"],
1585 "value" => ["type" => "text", "comment" => "Value of the field"],
1586 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
1587 "edited" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "last edit time"],
1590 "PRIMARY" => ["id"],
1592 "order" => ["order"],
1596 "push_subscriber" => [
1597 "comment" => "Used for OStatus: Contains feed subscribers",
1599 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1600 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1601 "callback_url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1602 "topic" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1603 "nickname" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1604 "push" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
1605 "last_update" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last successful trial"],
1606 "next_try" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Next retrial date"],
1607 "renewed" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Date of last subscription renewal"],
1608 "secret" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1611 "PRIMARY" => ["id"],
1612 "next_try" => ["next_try"],
1617 "comment" => "registrations requiring admin approval",
1619 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1620 "hash" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1621 "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
1622 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1623 "password" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1624 "language" => ["type" => "varchar(16)", "not null" => "1", "default" => "", "comment" => ""],
1625 "note" => ["type" => "text", "comment" => ""],
1628 "PRIMARY" => ["id"],
1635 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1636 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "User id"],
1637 "term" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
1640 "PRIMARY" => ["id"],
1641 "uid_term" => ["uid", "term(64)"],
1642 "term" => ["term(64)"]
1646 "comment" => "web session storage",
1648 "id" => ["type" => "bigint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1649 "sid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => ""],
1650 "data" => ["type" => "text", "comment" => ""],
1651 "expire" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
1654 "PRIMARY" => ["id"],
1655 "sid" => ["sid(64)"],
1656 "expire" => ["expire"],
1660 "comment" => "Data stored by Database storage backend",
1662 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1663 "data" => ["type" => "longblob", "not null" => "1", "comment" => "file data"]
1670 "comment" => "Push Subscription for the API",
1672 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented image data id"],
1673 "application-id" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["application" => "id"], "comment" => ""],
1674 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
1675 "endpoint" => ["type" => "varchar(511)", "comment" => "Endpoint URL"],
1676 "pubkey" => ["type" => "varchar(127)", "comment" => "User agent public key"],
1677 "secret" => ["type" => "varchar(32)", "comment" => "Auth secret"],
1678 "follow" => ["type" => "boolean", "comment" => ""],
1679 "favourite" => ["type" => "boolean", "comment" => ""],
1680 "reblog" => ["type" => "boolean", "comment" => ""],
1681 "mention" => ["type" => "boolean", "comment" => ""],
1682 "poll" => ["type" => "boolean", "comment" => ""],
1683 "follow_request" => ["type" => "boolean", "comment" => ""],
1684 "status" => ["type" => "boolean", "comment" => ""],
1687 "PRIMARY" => ["id"],
1688 "application-id_uid" => ["UNIQUE", "application-id", "uid"],
1689 "uid_application-id" => ["uid", "application-id"],
1693 "comment" => "Deleted usernames",
1695 "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
1696 "username" => ["type" => "varchar(255)", "not null" => "1", "comment" => ""],
1699 "PRIMARY" => ["id"],
1700 "username" => ["username(32)"],
1704 "comment" => "User specific public contact data",
1706 "cid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["contact" => "id"], "comment" => "Contact id of the linked public contact"],
1707 "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User id"],
1708 "uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the contact url"],
1709 "blocked" => ["type" => "boolean", "comment" => "Contact is completely blocked for this user"],
1710 "ignored" => ["type" => "boolean", "comment" => "Posts from this contact are ignored"],
1711 "collapsed" => ["type" => "boolean", "comment" => "Posts from this contact are collapsed"],
1712 "hidden" => ["type" => "boolean", "comment" => "This contact is hidden from the others"],
1713 "is-blocked" => ["type" => "boolean", "comment" => "User is blocked by this contact"],
1714 "pending" => ["type" => "boolean", "comment" => ""],
1715 "rel" => ["type" => "tinyint unsigned", "comment" => "The kind of the relation between the user and the contact"],
1716 "info" => ["type" => "mediumtext", "comment" => ""],
1717 "notify_new_posts" => ["type" => "boolean", "comment" => ""],
1718 "remote_self" => ["type" => "boolean", "comment" => ""],
1719 "fetch_further_information" => ["type" => "tinyint unsigned", "comment" => ""],
1720 "ffi_keyword_denylist" => ["type" => "text", "comment" => ""],
1721 "subhub" => ["type" => "boolean", "comment" => ""],
1722 "hub-verify" => ["type" => "varchar(255)", "comment" => ""],
1723 "protocol" => ["type" => "char(4)", "comment" => "Protocol of the contact"],
1724 "rating" => ["type" => "tinyint", "comment" => "Automatically detected feed poll frequency"],
1725 "priority" => ["type" => "tinyint unsigned", "comment" => "Feed poll priority"],
1728 "PRIMARY" => ["uid", "cid"],
1730 "uri-id_uid" => ["UNIQUE", "uri-id", "uid"],
1733 "arrived-activity" => [
1734 "comment" => "Id of arrived activities",
1736 "object-id" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "object id of the incoming activity"],
1737 "received" => ["type" => "datetime", "comment" => "Receiving date"],
1740 "PRIMARY" => ["object-id"],
1742 "engine" => "MEMORY",
1744 "fetched-activity" => [
1745 "comment" => "Id of fetched activities",
1747 "object-id" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "object id of fetched activity"],
1748 "received" => ["type" => "datetime", "comment" => "Receiving date"],
1751 "PRIMARY" => ["object-id"],
1753 "engine" => "MEMORY",
1756 "comment" => "Inter process communication between the frontend and the worker",
1758 "key" => ["type" => "int", "not null" => "1", "primary" => "1", "comment" => ""],
1759 "jobs" => ["type" => "boolean", "comment" => "Flag for outstanding jobs"],
1762 "PRIMARY" => ["key"],
1764 "engine" => "MEMORY",