]> git.mxchange.org Git - friendica.git/blob - include/dbstructure.php
5c89f49fb93242cf09381104a3a8ed178a83c75e
[friendica.git] / include / dbstructure.php
1 <?php
2 require_once("boot.php");
3 require_once("include/text.php");
4
5 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
6
7 /*
8  * send the email and do what is needed to do on update fails
9  *
10  * @param update_id             (int) number of failed update
11  * @param error_message (str) error message
12  */
13 function update_fail($update_id, $error_message){
14         //send the administrators an e-mail
15         $admin_mail_list = "'".implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email']))))."'";
16         $adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
17                 $admin_mail_list
18         );
19
20         // No valid result?
21         if (!dbm::is_result($adminlist)) {
22                 logger(sprintf('Cannot notify administrators about update_id=%d, error_message=%s', $update_id, $error_message), LOGGER_WARNING);
23
24                 // Don't continue
25                 return;
26         }
27
28         // every admin could had different language
29         foreach ($adminlist as $admin) {
30                 $lang = (($admin['language'])?$admin['language']:'en');
31                 push_lang($lang);
32
33                 $preamble = deindent(t("
34                         The friendica developers released update %s recently,
35                         but when I tried to install it, something went terribly wrong.
36                         This needs to be fixed soon and I can't do it alone. Please contact a
37                         friendica developer if you can not help me on your own. My database might be invalid."));
38                 $body = t("The error message is\n[pre]%s[/pre]");
39                 $preamble = sprintf($preamble, $update_id);
40                 $body = sprintf($body, $error_message);
41
42                 notification(array(
43                         'type' => "SYSTEM_EMAIL",
44                         'to_email' => $admin['email'],
45                         'preamble' => $preamble,
46                         'body' => $body,
47                         'language' => $lang,
48                 ));
49         }
50
51
52
53
54         /*
55         $email_tpl = get_intltext_template("update_fail_eml.tpl");
56         $email_msg = replace_macros($email_tpl, array(
57                 '$sitename' => $a->config['sitename'],
58                 '$siteurl' =>  App::get_baseurl(),
59                 '$update' => DB_UPDATE_VERSION,
60                 '$error' => sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION)
61         ));
62         $subject=sprintf(t('Update Error at %s'), App::get_baseurl());
63         require_once('include/email.php');
64         $subject = email_header_encode($subject,'UTF-8');
65         mail($a->config['admin_email'], $subject, $email_msg,
66                 'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME']."\n"
67                 .'Content-type: text/plain; charset=UTF-8'."\n"
68                 .'Content-transfer-encoding: 8bit');
69         */
70         //try the logger
71         logger("CRITICAL: Database structure update failed: ".$retval);
72 }
73
74
75 function table_structure($table) {
76         $structures = q("DESCRIBE `%s`", $table);
77
78         $indexes = q("SHOW INDEX FROM `%s`", $table);
79
80         $fielddata = array();
81         $indexdata = array();
82
83         if (dbm::is_result($indexes))
84                 foreach ($indexes AS $index) {
85                         if ($index["Index_type"] == "FULLTEXT") {
86                                 continue;
87                         }
88
89                         if ($index['Key_name'] != 'PRIMARY' && $index['Non_unique'] == '0' && !isset($indexdata[$index["Key_name"]])) {
90                                 $indexdata[$index["Key_name"]] = array('UNIQUE');
91                         }
92
93                         $column = $index["Column_name"];
94                         // On utf8mb4 a varchar index can only have a length of 191
95                         // To avoid the need to add this to every index definition we just ignore it here.
96                         // Exception are primary indexes
97                         // Since there are some combindex primary indexes we use the limit of 180 here.
98                         if (($index["Sub_part"] != "") AND (($index["Sub_part"] < 180) OR ($index["Key_name"] == "PRIMARY"))) {
99                                 $column .= "(".$index["Sub_part"].")";
100                         }
101
102                         $indexdata[$index["Key_name"]][] = $column;
103                 }
104
105         if (dbm::is_result($structures)) {
106                 foreach ($structures AS $field) {
107                         $fielddata[$field["Field"]]["type"] = $field["Type"];
108                         if ($field["Null"] == "NO") {
109                                 $fielddata[$field["Field"]]["not null"] = true;
110                         }
111
112                         if (isset($field["Default"])) {
113                                 $fielddata[$field["Field"]]["default"] = $field["Default"];
114                         }
115
116                         if ($field["Extra"] != "") {
117                                 $fielddata[$field["Field"]]["extra"] = $field["Extra"];
118                         }
119
120                         if ($field["Key"] == "PRI") {
121                                 $fielddata[$field["Field"]]["primary"] = true;
122                         }
123                 }
124         }
125         return(array("fields"=>$fielddata, "indexes"=>$indexdata));
126 }
127
128 function print_structure($database, $charset) {
129         echo "-- ------------------------------------------\n";
130         echo "-- ".FRIENDICA_PLATFORM." ".FRIENDICA_VERSION." (".FRIENDICA_CODENAME,")\n";
131         echo "-- DB_UPDATE_VERSION ".DB_UPDATE_VERSION."\n";
132         echo "-- ------------------------------------------\n\n\n";
133         foreach ($database AS $name => $structure) {
134                 echo "--\n";
135                 echo "-- TABLE $name\n";
136                 echo "--\n";
137                 db_create_table($name, $structure['fields'], $charset, true, false, $structure["indexes"]);
138
139                 echo "\n";
140         }
141 }
142
143 function update_structure($verbose, $action, $tables=null, $definition=null) {
144         global $a, $db;
145
146         if ($action) {
147                 set_config('system', 'maintenance', 1);
148         }
149
150         if (isset($a->config["system"]["db_charset"])) {
151                 $charset = $a->config["system"]["db_charset"];
152         } else {
153                 $charset = "utf8";
154         }
155
156         $errors = false;
157
158         logger('updating structure', LOGGER_DEBUG);
159
160         // Get the current structure
161         $database = array();
162
163         if (is_null($tables)) {
164                 $tables = q("SHOW TABLES");
165         }
166
167         foreach ($tables AS $table) {
168                 $table = current($table);
169
170                 logger(sprintf('updating structure for table %s ...', $table), LOGGER_DEBUG);
171                 $database[$table] = table_structure($table);
172         }
173
174         // Get the definition
175         if (is_null($definition)) {
176                 $definition = db_definition($charset);
177         }
178
179         // Ensure index conversion to unique removes duplicates
180         $sql_config = "SET session old_alter_table=1;";
181         if ($verbose) {
182                 echo $sql_config."\n";
183         }
184         if ($action) {
185                 $db->q($sql_config);
186         }
187
188         // MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
189         if ((version_compare($db->server_info(), '5.7.4') >= 0) AND
190                 !(strpos($db->server_info(), 'MariaDB') !== false)) {
191                 $ignore = '';
192         } else {
193                 $ignore = ' IGNORE';
194         }
195
196         // Compare it
197         foreach ($definition AS $name => $structure) {
198                 $is_new_table = False;
199                 $sql3="";
200                 if (!isset($database[$name])) {
201                         $r = db_create_table($name, $structure["fields"], $charset, $verbose, $action, $structure['indexes']);
202                         if (!dbm::is_result($r)) {
203                                 $errors .=  t('Errors encountered creating database tables.').$name.EOL;
204                         }
205                         $is_new_table = True;
206                 } else {
207                         /*
208                          * Drop the index if it isn't present in the definition
209                          * or the definition differ from current status
210                          * and index name doesn't start with "local_"
211                          */
212                         foreach ($database[$name]["indexes"] as $indexname => $fieldnames) {
213                                 $current_index_definition = implode(",",$fieldnames);
214                                 if (isset($structure["indexes"][$indexname])) {
215                                         $new_index_definition = implode(",",$structure["indexes"][$indexname]);
216                                 } else {
217                                         $new_index_definition = "__NOT_SET__";
218                                 }
219                                 if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
220                                         $sql2=db_drop_index($indexname);
221                                         if ($sql3 == "") {
222                                                 $sql3 = "ALTER".$ignore." TABLE `".$name."` ".$sql2;
223                                         } else {
224                                                 $sql3 .= ", ".$sql2;
225                                         }
226                                 }
227                         }
228                         // Compare the field structure field by field
229                         foreach ($structure["fields"] AS $fieldname => $parameters) {
230                                 if (!isset($database[$name]["fields"][$fieldname])) {
231                                         $sql2=db_add_table_field($fieldname, $parameters);
232                                         if ($sql3 == "") {
233                                                 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
234                                         } else {
235                                                 $sql3 .= ", ".$sql2;
236                                         }
237                                 } else {
238                                         // Compare the field definition
239                                         $current_field_definition = implode(",",$database[$name]["fields"][$fieldname]);
240                                         $new_field_definition = implode(",",$parameters);
241                                         if ($current_field_definition != $new_field_definition) {
242                                                 $sql2=db_modify_table_field($fieldname, $parameters);
243                                                 if ($sql3 == "") {
244                                                         $sql3 = "ALTER TABLE `".$name."` ".$sql2;
245                                                 } else {
246                                                         $sql3 .= ", ".$sql2;
247                                                 }
248                                         }
249
250                                 }
251                         }
252                 }
253
254                 /*
255                  * Create the index if the index don't exists in database
256                  * or the definition differ from the current status.
257                  * Don't create keys if table is new
258                  */
259                 if (!$is_new_table) {
260                         foreach ($structure["indexes"] AS $indexname => $fieldnames) {
261                                 if (isset($database[$name]["indexes"][$indexname])) {
262                                         $current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
263                                 } else {
264                                         $current_index_definition = "__NOT_SET__";
265                                 }
266                                 $new_index_definition = implode(",",$fieldnames);
267                                 if ($current_index_definition != $new_index_definition) {
268                                         $sql2=db_create_index($indexname, $fieldnames);
269                                         if ($sql2 != "") {
270                                                 if ($sql3 == "")
271                                                         $sql3 = "ALTER" . $ignore . " TABLE `".$name."` ".$sql2;
272                                                 else
273                                                         $sql3 .= ", ".$sql2;
274                                         }
275                                 }
276                         }
277                 }
278                 if ($sql3 != "") {
279                         $sql3 .= ";";
280
281                         if ($verbose)
282                                 echo $sql3."\n";
283
284                         if ($action) {
285                                 $r = @$db->q($sql3);
286                                 if (dbm::is_result($r))
287                                         $errors .= t('Errors encountered performing database changes.').$sql3.EOL;
288                         }
289                 }
290         }
291
292         if ($action)
293                 set_config('system', 'maintenance', 0);
294
295         return $errors;
296 }
297
298 function db_field_command($parameters, $create = true) {
299         $fieldstruct = $parameters["type"];
300
301         if ($parameters["not null"])
302                 $fieldstruct .= " NOT NULL";
303
304         if (isset($parameters["default"])){
305                 if (strpos(strtolower($parameters["type"]),"int")!==false) {
306                         $fieldstruct .= " DEFAULT ".$parameters["default"];
307                 } else {
308                         $fieldstruct .= " DEFAULT '".$parameters["default"]."'";
309                 }
310         }
311         if ($parameters["extra"] != "")
312                 $fieldstruct .= " ".$parameters["extra"];
313
314         /*if (($parameters["primary"] != "") AND $create)
315                 $fieldstruct .= " PRIMARY KEY";*/
316
317         return($fieldstruct);
318 }
319
320 function db_create_table($name, $fields, $charset, $verbose, $action, $indexes=null) {
321         global $a, $db;
322
323         $r = true;
324
325         $sql = "";
326
327         $sql_rows = array();
328         $primary_keys = array();
329         foreach($fields AS $fieldname => $field) {
330                 $sql_rows[] = "`".dbesc($fieldname)."` ".db_field_command($field);
331                 if (x($field,'primary') and $field['primary']!=''){
332                         $primary_keys[] = $fieldname;
333                 }
334         }
335
336         if (!is_null($indexes)) {
337                 foreach ($indexes AS $indexname => $fieldnames) {
338                         $sql_index = db_create_index($indexname, $fieldnames, "");
339                         if (!is_null($sql_index)) $sql_rows[] = $sql_index;
340                 }
341         }
342
343         $sql = implode(",\n\t", $sql_rows);
344
345         $sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", dbesc($name)).$sql."\n) DEFAULT CHARSET=".$charset;
346         if ($verbose)
347                 echo $sql.";\n";
348
349         if ($action)
350                 $r = @$db->q($sql);
351
352         return $r;
353 }
354
355 function db_add_table_field($fieldname, $parameters) {
356         $sql = sprintf("ADD `%s` %s", dbesc($fieldname), db_field_command($parameters));
357         return($sql);
358 }
359
360 function db_modify_table_field($fieldname, $parameters) {
361         $sql = sprintf("MODIFY `%s` %s", dbesc($fieldname), db_field_command($parameters, false));
362         return($sql);
363 }
364
365 function db_drop_index($indexname) {
366         $sql = sprintf("DROP INDEX `%s`", dbesc($indexname));
367         return($sql);
368 }
369
370 function db_create_index($indexname, $fieldnames, $method="ADD") {
371
372         $method = strtoupper(trim($method));
373         if ($method!="" && $method!="ADD") {
374                 throw new Exception("Invalid parameter 'method' in db_create_index(): '$method'");
375                 killme();
376         }
377
378         if ($fieldnames[0] == "UNIQUE") {
379                 array_shift($fieldnames);
380                 $method .= ' UNIQUE';
381         }
382
383         $names = "";
384         foreach ($fieldnames AS $fieldname) {
385                 if ($names != "")
386                         $names .= ",";
387
388                 if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
389                         $names .= "`".dbesc($matches[1])."`(".intval($matches[2]).")";
390                 } else {
391                         $names .= "`".dbesc($fieldname)."`";
392                 }
393         }
394
395         if ($indexname == "PRIMARY") {
396                 return sprintf("%s PRIMARY KEY(%s)", $method, $names);
397         }
398
399
400         $sql = sprintf("%s INDEX `%s` (%s)", $method, dbesc($indexname), $names);
401         return($sql);
402 }
403
404 function db_index_suffix($charset, $reduce = 0) {
405         if ($charset != "utf8mb4") {
406                 return "";
407         }
408
409         // On utf8mb4 indexes can only have a length of 191
410         $indexlength = 191 - $reduce;
411
412         return "(".$indexlength.")";
413 }
414
415 function db_definition($charset) {
416
417         $database = array();
418
419         $database["addon"] = array(
420                         "fields" => array(
421                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
422                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
423                                         "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
424                                         "installed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
425                                         "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
426                                         "timestamp" => array("type" => "bigint(20)", "not null" => "1", "default" => "0"),
427                                         "plugin_admin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
428                                         ),
429                         "indexes" => array(
430                                         "PRIMARY" => array("id"),
431                                         )
432                         );
433         $database["attach"] = array(
434                         "fields" => array(
435                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
436                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
437                                         "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
438                                         "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
439                                         "filetype" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
440                                         "filesize" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
441                                         "data" => array("type" => "longblob", "not null" => "1"),
442                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
443                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
444                                         "allow_cid" => array("type" => "mediumtext"),
445                                         "allow_gid" => array("type" => "mediumtext"),
446                                         "deny_cid" => array("type" => "mediumtext"),
447                                         "deny_gid" => array("type" => "mediumtext"),
448                                         ),
449                         "indexes" => array(
450                                         "PRIMARY" => array("id"),
451                                         )
452                         );
453         $database["auth_codes"] = array(
454                         "fields" => array(
455                                         "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
456                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
457                                         "redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
458                                         "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
459                                         "scope" => array("type" => "varchar(250)", "not null" => "1", "default" => ""),
460                                         ),
461                         "indexes" => array(
462                                         "PRIMARY" => array("id"),
463                                         )
464                         );
465         $database["cache"] = array(
466                         "fields" => array(
467                                         "k" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
468                                         "v" => array("type" => "text"),
469                                         "expire_mode" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
470                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
471                                         ),
472                         "indexes" => array(
473                                         "PRIMARY" => array("k"),
474                                         "updated" => array("updated"),
475                                         "expire_mode_updated" => array("expire_mode", "updated"),
476                                         )
477                         );
478         $database["challenge"] = array(
479                         "fields" => array(
480                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
481                                         "challenge" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
482                                         "dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
483                                         "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
484                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
485                                         "last_update" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
486                                         ),
487                         "indexes" => array(
488                                         "PRIMARY" => array("id"),
489                                         )
490                         );
491         $database["clients"] = array(
492                         "fields" => array(
493                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "primary" => "1"),
494                                         "pw" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
495                                         "redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
496                                         "name" => array("type" => "text"),
497                                         "icon" => array("type" => "text"),
498                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
499                                         ),
500                         "indexes" => array(
501                                         "PRIMARY" => array("client_id"),
502                                         )
503                         );
504         $database["config"] = array(
505                         "fields" => array(
506                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
507                                         "cat" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
508                                         "k" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
509                                         "v" => array("type" => "text"),
510                                         ),
511                         "indexes" => array(
512                                         "PRIMARY" => array("id"),
513                                         "cat_k" => array("UNIQUE", "cat", "k"),
514                                         )
515                         );
516         $database["contact"] = array(
517                         "fields" => array(
518                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
519                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
520                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
521                                         "self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
522                                         "remote_self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
523                                         "rel" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
524                                         "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
525                                         "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
526                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
527                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
528                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
529                                         "about" => array("type" => "text"),
530                                         "keywords" => array("type" => "text"),
531                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
532                                         "xmpp" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
533                                         "attag" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
534                                         "avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
535                                         "photo" => array("type" => "text"),
536                                         "thumb" => array("type" => "text"),
537                                         "micro" => array("type" => "text"),
538                                         "site-pubkey" => array("type" => "text"),
539                                         "issued-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
540                                         "dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
541                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
542                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
543                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
544                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
545                                         "pubkey" => array("type" => "text"),
546                                         "prvkey" => array("type" => "text"),
547                                         "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
548                                         "request" => array("type" => "text"),
549                                         "notify" => array("type" => "text"),
550                                         "poll" => array("type" => "text"),
551                                         "confirm" => array("type" => "text"),
552                                         "poco" => array("type" => "text"),
553                                         "aes_allow" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
554                                         "ret-aes" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
555                                         "usehub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
556                                         "subhub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
557                                         "hub-verify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
558                                         "last-update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
559                                         "success_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
560                                         "failure_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
561                                         "name-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
562                                         "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
563                                         "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
564                                         "term-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
565                                         "last-item" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
566                                         "priority" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
567                                         "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
568                                         "readonly" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
569                                         "writable" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
570                                         "forum" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
571                                         "prv" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
572                                         "contact-type" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
573                                         "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
574                                         "archive" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
575                                         "pending" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
576                                         "rating" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
577                                         "reason" => array("type" => "text"),
578                                         "closeness" => array("type" => "tinyint(2)", "not null" => "1", "default" => "99"),
579                                         "info" => array("type" => "mediumtext"),
580                                         "profile-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
581                                         "bdyear" => array("type" => "varchar(4)", "not null" => "1", "default" => ""),
582                                         "bd" => array("type" => "date", "not null" => "1", "default" => "0000-00-00"),
583                                         "notify_new_posts" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
584                                         "fetch_further_information" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
585                                         "ffi_keyword_blacklist" => array("type" => "mediumtext"),
586                                         ),
587                         "indexes" => array(
588                                         "PRIMARY" => array("id"),
589                                         "uid_name" => array("uid", "name"),
590                                         "uid_self" => array("uid", "self"),
591                                         "alias_uid" => array("alias(32)", "uid"),
592                                         "uid_pending" => array("uid", "pending"),
593                                         "uid_blocked" => array("uid", "blocked"),
594                                         "uid_rel_network_poll" => array("uid", "rel", "network", "poll(64)", "archive"),
595                                         "uid_network_batch" => array("uid", "network", "batch(64)"),
596                                         "addr_uid" => array("addr(32)", "uid"),
597                                         "nurl_uid" => array("nurl(32)", "uid"),
598                                         "nick_uid" => array("nick(32)", "uid"),
599                                         )
600                         );
601         $database["conv"] = array(
602                         "fields" => array(
603                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
604                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
605                                         "recips" => array("type" => "mediumtext"),
606                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
607                                         "creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
608                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
609                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
610                                         "subject" => array("type" => "mediumtext"),
611                                         ),
612                         "indexes" => array(
613                                         "PRIMARY" => array("id"),
614                                         "uid" => array("uid"),
615                                         )
616                         );
617         $database["deliverq"] = array(
618                         "fields" => array(
619                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
620                                         "cmd" => array("type" => "varbinary(32)", "not null" => "1", "default" => ""),
621                                         "item" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
622                                         "contact" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
623                                         ),
624                         "indexes" => array(
625                                         "PRIMARY" => array("id"),
626                                         "cmd_item_contact" => array("UNIQUE", "cmd", "item", "contact"),
627                                         )
628                         );
629         $database["event"] = array(
630                         "fields" => array(
631                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
632                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
633                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
634                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
635                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
636                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
637                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
638                                         "start" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
639                                         "finish" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
640                                         "summary" => array("type" => "text"),
641                                         "desc" => array("type" => "text"),
642                                         "location" => array("type" => "text"),
643                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
644                                         "nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
645                                         "adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
646                                         "ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
647                                         "allow_cid" => array("type" => "mediumtext"),
648                                         "allow_gid" => array("type" => "mediumtext"),
649                                         "deny_cid" => array("type" => "mediumtext"),
650                                         "deny_gid" => array("type" => "mediumtext"),
651                                         ),
652                         "indexes" => array(
653                                         "PRIMARY" => array("id"),
654                                         "uid_start" => array("uid", "start"),
655                                         )
656                         );
657         $database["fcontact"] = array(
658                         "fields" => array(
659                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
660                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
661                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
662                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
663                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
664                                         "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
665                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
666                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
667                                         "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
668                                         "notify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
669                                         "poll" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
670                                         "confirm" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
671                                         "priority" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
672                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
673                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
674                                         "pubkey" => array("type" => "text"),
675                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
676                                         ),
677                         "indexes" => array(
678                                         "PRIMARY" => array("id"),
679                                         "addr" => array("addr(32)"),
680                                         )
681                         );
682         $database["ffinder"] = array(
683                         "fields" => array(
684                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
685                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
686                                         "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
687                                         "fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
688                                         ),
689                         "indexes" => array(
690                                         "PRIMARY" => array("id"),
691                                         )
692                         );
693         $database["fserver"] = array(
694                         "fields" => array(
695                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
696                                         "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
697                                         "posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
698                                         "key" => array("type" => "text"),
699                                         ),
700                         "indexes" => array(
701                                         "PRIMARY" => array("id"),
702                                         "server" => array("server(32)"),
703                                         )
704                         );
705         $database["fsuggest"] = array(
706                         "fields" => array(
707                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
708                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
709                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
710                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
711                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
712                                         "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
713                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
714                                         "note" => array("type" => "text"),
715                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
716                                         ),
717                         "indexes" => array(
718                                         "PRIMARY" => array("id"),
719                                         )
720                         );
721         $database["gcign"] = array(
722                         "fields" => array(
723                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
724                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
725                                         "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
726                                         ),
727                         "indexes" => array(
728                                         "PRIMARY" => array("id"),
729                                         "uid" => array("uid"),
730                                         "gcid" => array("gcid"),
731                                         )
732                         );
733         $database["gcontact"] = array(
734                         "fields" => array(
735                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
736                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
737                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
738                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
739                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
740                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
741                                         "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
742                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
743                                         "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
744                                         "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
745                                         "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
746                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
747                                         "about" => array("type" => "text"),
748                                         "keywords" => array("type" => "text"),
749                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
750                                         "birthday" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
751                                         "community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
752                                         "contact-type" => array("type" => "tinyint(1)", "not null" => "1", "default" => "-1"),
753                                         "hide" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
754                                         "nsfw" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
755                                         "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
756                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
757                                         "notify" => array("type" => "text"),
758                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
759                                         "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
760                                         "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
761                                         ),
762                         "indexes" => array(
763                                         "PRIMARY" => array("id"),
764                                         "nurl" => array("nurl(32)"),
765                                         "name" => array("name(32)"),
766                                         "nick" => array("nick(32)"),
767                                         "addr" => array("addr(32)"),
768                                         "updated" => array("updated"),
769                                         )
770                         );
771         $database["glink"] = array(
772                         "fields" => array(
773                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
774                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
775                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
776                                         "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
777                                         "zcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
778                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
779                                         ),
780                         "indexes" => array(
781                                         "PRIMARY" => array("id"),
782                                         "cid_uid_gcid_zcid" => array("UNIQUE", "cid","uid","gcid","zcid"),
783                                         "gcid" => array("gcid"),
784                                         "zcid" => array("zcid"),
785                                         )
786                         );
787         $database["group"] = array(
788                         "fields" => array(
789                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
790                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
791                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
792                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
793                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
794                                         ),
795                         "indexes" => array(
796                                         "PRIMARY" => array("id"),
797                                         "uid" => array("uid"),
798                                         )
799                         );
800         $database["group_member"] = array(
801                         "fields" => array(
802                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
803                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
804                                         "gid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
805                                         "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
806                                         ),
807                         "indexes" => array(
808                                         "PRIMARY" => array("id"),
809                                         "gid_contactid" => array("gid", "contact-id"),
810                                         "uid_contactid" => array("uid", "contact-id"),
811                                         "uid_gid_contactid" => array("UNIQUE", "uid", "gid", "contact-id"),
812                                         )
813                         );
814         $database["gserver"] = array(
815                         "fields" => array(
816                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
817                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
818                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
819                                         "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
820                                         "site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
821                                         "info" => array("type" => "text"),
822                                         "register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
823                                         "poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
824                                         "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
825                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
826                                         "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
827                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
828                                         "last_poco_query" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
829                                         "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
830                                         "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
831                                         ),
832                         "indexes" => array(
833                                         "PRIMARY" => array("id"),
834                                         "nurl" => array("nurl(32)"),
835                                         )
836                         );
837         $database["hook"] = array(
838                         "fields" => array(
839                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
840                                         "hook" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
841                                         "file" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
842                                         "function" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
843                                         "priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
844                                         ),
845                         "indexes" => array(
846                                         "PRIMARY" => array("id"),
847                                         "hook_file_function" => array("hook(30)","file(60)","function(30)"),
848                                         )
849                         );
850         $database["intro"] = array(
851                         "fields" => array(
852                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
853                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
854                                         "fid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
855                                         "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
856                                         "knowyou" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
857                                         "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
858                                         "note" => array("type" => "text"),
859                                         "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
860                                         "datetime" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
861                                         "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
862                                         "ignore" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
863                                         ),
864                         "indexes" => array(
865                                         "PRIMARY" => array("id"),
866                                         )
867                         );
868         $database["item"] = array(
869                         "fields" => array(
870                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
871                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
872                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
873                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
874                                         "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
875                                         "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
876                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
877                                         "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
878                                         "gravity" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
879                                         "parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
880                                         "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
881                                         "extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
882                                         "thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
883                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
884                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
885                                         "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
886                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
887                                         "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
888                                         "owner-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
889                                         "owner-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
890                                         "owner-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
891                                         "owner-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
892                                         "author-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
893                                         "author-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
894                                         "author-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
895                                         "author-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
896                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
897                                         "body" => array("type" => "mediumtext"),
898                                         "app" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
899                                         "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
900                                         "object-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
901                                         "object" => array("type" => "text"),
902                                         "target-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
903                                         "target" => array("type" => "text"),
904                                         "postopts" => array("type" => "text"),
905                                         "plink" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
906                                         "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
907                                         "event-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
908                                         "tag" => array("type" => "mediumtext"),
909                                         "attach" => array("type" => "mediumtext"),
910                                         "inform" => array("type" => "mediumtext"),
911                                         "file" => array("type" => "mediumtext"),
912                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
913                                         "coord" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
914                                         "allow_cid" => array("type" => "mediumtext"),
915                                         "allow_gid" => array("type" => "mediumtext"),
916                                         "deny_cid" => array("type" => "mediumtext"),
917                                         "deny_gid" => array("type" => "mediumtext"),
918                                         "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
919                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
920                                         "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
921                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
922                                         "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
923                                         "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
924                                         "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
925                                         "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
926                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
927                                         "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
928                                         "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
929                                         "last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"),
930                                         "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
931                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
932                                         "rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
933                                         "rendered-html" => array("type" => "mediumtext"),
934                                         "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
935                                         ),
936                         "indexes" => array(
937                                         "PRIMARY" => array("id"),
938                                         "guid" => array("guid"),
939                                         "uri" => array("uri"),
940                                         "parent" => array("parent"),
941                                         "parent-uri" => array("parent-uri"),
942                                         "extid" => array("extid"),
943                                         "uid_id" => array("uid","id"),
944                                         "uid_created" => array("uid","created"),
945                                         "uid_unseen_contactid" => array("uid","unseen","contact-id"),
946                                         "uid_network_received" => array("uid","network","received"),
947                                         "uid_received" => array("uid","received"),
948                                         "uid_network_commented" => array("uid","network","commented"),
949                                         "uid_title" => array("uid","title"),
950                                         "uid_thrparent" => array("uid","thr-parent"),
951                                         "uid_parenturi" => array("uid","parent-uri"),
952                                         "uid_contactid_id" => array("uid","contact-id","id"),
953                                         "uid_contactid_created" => array("uid","contact-id","created"),
954                                         "authorid_created" => array("author-id","created"),
955                                         "uid_uri" => array("uid", "uri"),
956                                         "uid_wall_created" => array("uid","wall","created"),
957                                         "resource-id" => array("resource-id"),
958                                         "uid_type" => array("uid","type"),
959                                         "contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
960                                         "uid_type_changed" => array("uid","type","changed"),
961                                         "contactid_verb" => array("contact-id","verb"),
962                                         "deleted_changed" => array("deleted","changed"),
963                                         "uid_wall_changed" => array("uid","wall","changed"),
964                                         "uid_eventid" => array("uid","event-id"),
965                                         "uid_authorlink" => array("uid","author-link"),
966                                         "uid_ownerlink" => array("uid","owner-link"),
967                                         )
968                         );
969         $database["item_id"] = array(
970                         "fields" => array(
971                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
972                                         "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
973                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
974                                         "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
975                                         "service" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
976                                         ),
977                         "indexes" => array(
978                                         "PRIMARY" => array("id"),
979                                         "uid" => array("uid"),
980                                         "sid" => array("sid"),
981                                         "service" => array("service(32)"),
982                                         "iid" => array("iid"),
983                                         )
984                         );
985         $database["locks"] = array(
986                         "fields" => array(
987                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
988                                         "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
989                                         "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
990                                         "created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
991                                         ),
992                         "indexes" => array(
993                                         "PRIMARY" => array("id"),
994                                         )
995                         );
996         $database["mail"] = array(
997                         "fields" => array(
998                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
999                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1000                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1001                                         "from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1002                                         "from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1003                                         "from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1004                                         "contact-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1005                                         "convid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1006                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1007                                         "body" => array("type" => "mediumtext"),
1008                                         "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1009                                         "reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1010                                         "replied" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1011                                         "unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1012                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1013                                         "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1014                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1015                                         ),
1016                         "indexes" => array(
1017                                         "PRIMARY" => array("id"),
1018                                         "uid" => array("uid"),
1019                                         "uid_seen" => array("uid", "seen"),
1020                                         "convid" => array("convid"),
1021                                         "uri" => array("uri(64)"),
1022                                         "parent-uri" => array("parent-uri(64)"),
1023                                         )
1024                         );
1025         $database["mailacct"] = array(
1026                         "fields" => array(
1027                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1028                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1029                                         "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1030                                         "port" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1031                                         "ssltype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1032                                         "mailbox" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1033                                         "user" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1034                                         "pass" => array("type" => "text"),
1035                                         "reply_to" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1036                                         "action" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1037                                         "movetofolder" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1038                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1039                                         "last_check" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1040                                         ),
1041                         "indexes" => array(
1042                                         "PRIMARY" => array("id"),
1043                                         )
1044                         );
1045         $database["manage"] = array(
1046                         "fields" => array(
1047                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1048                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1049                                         "mid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1050                                         ),
1051                         "indexes" => array(
1052                                         "PRIMARY" => array("id"),
1053                                         "uid_mid" => array("uid","mid"),
1054                                         )
1055                         );
1056         $database["notify"] = array(
1057                         "fields" => array(
1058                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1059                                         "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1060                                         "type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1061                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1062                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1063                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1064                                         "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1065                                         "msg" => array("type" => "mediumtext"),
1066                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1067                                         "link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1068                                         "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1069                                         "parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1070                                         "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1071                                         "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1072                                         "otype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1073                                         "name_cache" => array("type" => "tinytext"),
1074                                         "msg_cache" => array("type" => "mediumtext")
1075                                         ),
1076                         "indexes" => array(
1077                                         "PRIMARY" => array("id"),
1078                                         "uid_hash" => array("uid", "hash"),
1079                                         "uid_seen_date" => array("uid", "seen", "date"),
1080                                         "uid_type_link" => array("uid", "type", "link"),
1081                                         "uid_link" => array("uid", "link"),
1082                                         "uid_date" => array("uid", "date"),
1083                                         )
1084                         );
1085         $database["notify-threads"] = array(
1086                         "fields" => array(
1087                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1088                                         "notify-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1089                                         "master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1090                                         "parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1091                                         "receiver-uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1092                                         ),
1093                         "indexes" => array(
1094                                         "PRIMARY" => array("id"),
1095                                         "master-parent-item" => array("master-parent-item"),
1096                                         )
1097                         );
1098         $database["oembed"] = array(
1099                         "fields" => array(
1100                                         "url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
1101                                         "content" => array("type" => "text"),
1102                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1103                                         ),
1104                         "indexes" => array(
1105                                         "PRIMARY" => array("url"),
1106                                         "created" => array("created"),
1107                                         )
1108                         );
1109         $database["parsed_url"] = array(
1110                         "fields" => array(
1111                                         "url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
1112                                         "guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1113                                         "oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1114                                         "content" => array("type" => "text"),
1115                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1116                                         ),
1117                         "indexes" => array(
1118                                         "PRIMARY" => array("url", "guessing", "oembed"),
1119                                         "created" => array("created"),
1120                                         )
1121                         );
1122         $database["pconfig"] = array(
1123                         "fields" => array(
1124                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1125                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1126                                         "cat" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
1127                                         "k" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
1128                                         "v" => array("type" => "mediumtext"),
1129                                         ),
1130                         "indexes" => array(
1131                                         "PRIMARY" => array("id"),
1132                                         "uid_cat_k" => array("UNIQUE", "uid", "cat", "k"),
1133                                         )
1134                         );
1135         $database["photo"] = array(
1136                         "fields" => array(
1137                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1138                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1139                                         "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1140                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1141                                         "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1142                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1143                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1144                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1145                                         "desc" => array("type" => "text"),
1146                                         "album" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1147                                         "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1148                                         "type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
1149                                         "height" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1150                                         "width" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1151                                         "datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1152                                         "data" => array("type" => "mediumblob", "not null" => "1"),
1153                                         "scale" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
1154                                         "profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1155                                         "allow_cid" => array("type" => "mediumtext"),
1156                                         "allow_gid" => array("type" => "mediumtext"),
1157                                         "deny_cid" => array("type" => "mediumtext"),
1158                                         "deny_gid" => array("type" => "mediumtext"),
1159                                         ),
1160                         "indexes" => array(
1161                                         "PRIMARY" => array("id"),
1162                                         "uid_contactid" => array("uid", "contact-id"),
1163                                         "uid_profile" => array("uid", "profile"),
1164                                         "uid_album_created" => array("uid", "album(32)", "created"),
1165                                         "uid_album_resource-id_created" => array("uid", "album(32)", "resource-id(64)", "created"),
1166                                         "resource-id" => array("resource-id(64)"),
1167                                         )
1168                         );
1169         $database["poll"] = array(
1170                         "fields" => array(
1171                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1172                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1173                                         "q0" => array("type" => "mediumtext"),
1174                                         "q1" => array("type" => "mediumtext"),
1175                                         "q2" => array("type" => "mediumtext"),
1176                                         "q3" => array("type" => "mediumtext"),
1177                                         "q4" => array("type" => "mediumtext"),
1178                                         "q5" => array("type" => "mediumtext"),
1179                                         "q6" => array("type" => "mediumtext"),
1180                                         "q7" => array("type" => "mediumtext"),
1181                                         "q8" => array("type" => "mediumtext"),
1182                                         "q9" => array("type" => "mediumtext"),
1183                                         ),
1184                         "indexes" => array(
1185                                         "PRIMARY" => array("id"),
1186                                         "uid" => array("uid"),
1187                                         )
1188                         );
1189         $database["poll_result"] = array(
1190                         "fields" => array(
1191                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1192                                         "poll_id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1193                                         "choice" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1194                                         ),
1195                         "indexes" => array(
1196                                         "PRIMARY" => array("id"),
1197                                         "poll_id" => array("poll_id"),
1198                                         "choice" => array("choice"),
1199                                         )
1200                         );
1201         $database["process"] = array(
1202                         "fields" => array(
1203                                         "pid" => array("type" => "int(10) unsigned", "not null" => "1", "primary" => "1"),
1204                                         "command" => array("type" => "varbinary(32)", "not null" => "1", "default" => ""),
1205                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1206                                         ),
1207                         "indexes" => array(
1208                                         "PRIMARY" => array("pid"),
1209                                         "command" => array("command"),
1210                                         )
1211                         );
1212         $database["profile"] = array(
1213                         "fields" => array(
1214                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1215                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1216                                         "profile-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1217                                         "is-default" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1218                                         "hide-friends" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1219                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1220                                         "pdesc" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1221                                         "dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
1222                                         "address" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1223                                         "locality" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1224                                         "region" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1225                                         "postal-code" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1226                                         "country-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1227                                         "hometown" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1228                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1229                                         "marital" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1230                                         "with" => array("type" => "text"),
1231                                         "howlong" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1232                                         "sexual" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1233                                         "politic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1234                                         "religion" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1235                                         "pub_keywords" => array("type" => "text"),
1236                                         "prv_keywords" => array("type" => "text"),
1237                                         "likes" => array("type" => "text"),
1238                                         "dislikes" => array("type" => "text"),
1239                                         "about" => array("type" => "text"),
1240                                         "summary" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1241                                         "music" => array("type" => "text"),
1242                                         "book" => array("type" => "text"),
1243                                         "tv" => array("type" => "text"),
1244                                         "film" => array("type" => "text"),
1245                                         "interest" => array("type" => "text"),
1246                                         "romance" => array("type" => "text"),
1247                                         "work" => array("type" => "text"),
1248                                         "education" => array("type" => "text"),
1249                                         "contact" => array("type" => "text"),
1250                                         "homepage" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1251                                         "xmpp" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1252                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1253                                         "thumb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1254                                         "publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1255                                         "net-publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1256                                         ),
1257                         "indexes" => array(
1258                                         "PRIMARY" => array("id"),
1259                                         )
1260                         );
1261         $database["profile_check"] = array(
1262                         "fields" => array(
1263                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1264                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1265                                         "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1266                                         "dfrn_id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1267                                         "sec" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1268                                         "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1269                                         ),
1270                         "indexes" => array(
1271                                         "PRIMARY" => array("id"),
1272                                         )
1273                         );
1274         $database["push_subscriber"] = array(
1275                         "fields" => array(
1276                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1277                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1278                                         "callback_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1279                                         "topic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1280                                         "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1281                                         "push" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1282                                         "last_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1283                                         "secret" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1284                                         ),
1285                         "indexes" => array(
1286                                         "PRIMARY" => array("id"),
1287                                         )
1288                         );
1289         $database["queue"] = array(
1290                         "fields" => array(
1291                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1292                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1293                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1294                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1295                                         "last" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1296                                         "content" => array("type" => "mediumtext"),
1297                                         "batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1298                                         ),
1299                         "indexes" => array(
1300                                         "PRIMARY" => array("id"),
1301                                         "cid" => array("cid"),
1302                                         "created" => array("created"),
1303                                         "last" => array("last"),
1304                                         "network" => array("network"),
1305                                         "batch" => array("batch"),
1306                                         )
1307                         );
1308         $database["register"] = array(
1309                         "fields" => array(
1310                                         "id" => array("type" => "int(11) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1311                                         "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1312                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1313                                         "uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1314                                         "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1315                                         "language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1316                                         "note" => array("type" => "text"),
1317                                         ),
1318                         "indexes" => array(
1319                                         "PRIMARY" => array("id"),
1320                                         )
1321                         );
1322         $database["search"] = array(
1323                         "fields" => array(
1324                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1325                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1326                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1327                                         ),
1328                         "indexes" => array(
1329                                         "PRIMARY" => array("id"),
1330                                         "uid" => array("uid"),
1331                                         )
1332                         );
1333         $database["session"] = array(
1334                         "fields" => array(
1335                                         "id" => array("type" => "bigint(20) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1336                                         "sid" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
1337                                         "data" => array("type" => "text"),
1338                                         "expire" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1339                                         ),
1340                         "indexes" => array(
1341                                         "PRIMARY" => array("id"),
1342                                         "sid" => array("sid(64)"),
1343                                         "expire" => array("expire"),
1344                                         )
1345                         );
1346         $database["sign"] = array(
1347                         "fields" => array(
1348                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1349                                         "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1350                                         "signed_text" => array("type" => "mediumtext"),
1351                                         "signature" => array("type" => "text"),
1352                                         "signer" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1353                                         ),
1354                         "indexes" => array(
1355                                         "PRIMARY" => array("id"),
1356                                         "iid" => array("iid"),
1357                                         )
1358                         );
1359         $database["spam"] = array(
1360                         "fields" => array(
1361                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1362                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1363                                         "spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1364                                         "ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1365                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1366                                         "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1367                                         ),
1368                         "indexes" => array(
1369                                         "PRIMARY" => array("id"),
1370                                         "uid" => array("uid"),
1371                                         "spam" => array("spam"),
1372                                         "ham" => array("ham"),
1373                                         "term" => array("term"),
1374                                         )
1375                         );
1376         $database["term"] = array(
1377                         "fields" => array(
1378                                         "tid" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1379                                         "oid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1380                                         "otype" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1381                                         "type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1382                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1383                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1384                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1385                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1386                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1387                                         "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1388                                         "aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1389                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1390                                         ),
1391                         "indexes" => array(
1392                                         "PRIMARY" => array("tid"),
1393                                         "oid_otype_type_term" => array("oid","otype","type","term"),
1394                                         "uid_term_tid" => array("uid","term(32)","tid"),
1395                                         "type_term" => array("type","term(32)"),
1396                                         "uid_otype_type_term_global_created" => array("uid","otype","type","term(32)","global","created"),
1397                                         "uid_otype_type_url" => array("uid","otype","type","url(64)"),
1398                                         "guid" => array("guid(64)"),
1399                                         )
1400                         );
1401         $database["thread"] = array(
1402                         "fields" => array(
1403                                         "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1"),
1404                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1405                                         "contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1406                                         "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1407                                         "owner-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1408                                         "author-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1409                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1410                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1411                                         "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1412                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1413                                         "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1414                                         "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1415                                         "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1416                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1417                                         "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1418                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1419                                         "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1420                                         "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1421                                         "ignored" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1422                                         "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1423                                         "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
1424                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1425                                         "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1426                                         "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1427                                         "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1428                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1429                                         ),
1430                         "indexes" => array(
1431                                         "PRIMARY" => array("iid"),
1432                                         "created" => array("created"),
1433                                         "commented" => array("commented"),
1434                                         "uid_network_commented" => array("uid","network","commented"),
1435                                         "uid_network_created" => array("uid","network","created"),
1436                                         "uid_contactid_commented" => array("uid","contact-id","commented"),
1437                                         "uid_contactid_created" => array("uid","contact-id","created"),
1438                                         "uid_created" => array("uid","created"),
1439                                         "uid_commented" => array("uid","commented"),
1440                                         )
1441                         );
1442         $database["tokens"] = array(
1443                         "fields" => array(
1444                                         "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
1445                                         "secret" => array("type" => "text"),
1446                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
1447                                         "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1448                                         "scope" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
1449                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1450                                         ),
1451                         "indexes" => array(
1452                                         "PRIMARY" => array("id"),
1453                                         )
1454                         );
1455         $database["user"] = array(
1456                         "fields" => array(
1457                                         "uid" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1458                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1459                                         "username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1460                                         "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1461                                         "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1462                                         "email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1463                                         "openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1464                                         "timezone" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
1465                                         "language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
1466                                         "register_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1467                                         "login_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1468                                         "default-location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1469                                         "allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1470                                         "theme" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1471                                         "pubkey" => array("type" => "text"),
1472                                         "prvkey" => array("type" => "text"),
1473                                         "spubkey" => array("type" => "text"),
1474                                         "sprvkey" => array("type" => "text"),
1475                                         "verified" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1476                                         "blocked" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1477                                         "blockwall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1478                                         "hidewall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1479                                         "blocktags" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1480                                         "unkmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1481                                         "cntunkmail" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1482                                         "notify-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "65535"),
1483                                         "page-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1484                                         "account-type" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1485                                         "prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1486                                         "pwdreset" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1487                                         "maxreq" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1488                                         "expire" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1489                                         "account_removed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1490                                         "account_expired" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1491                                         "account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1492                                         "expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1493                                         "service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1494                                         "def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1495                                         "allow_cid" => array("type" => "mediumtext"),
1496                                         "allow_gid" => array("type" => "mediumtext"),
1497                                         "deny_cid" => array("type" => "mediumtext"),
1498                                         "deny_gid" => array("type" => "mediumtext"),
1499                                         "openidserver" => array("type" => "text"),
1500                                         ),
1501                         "indexes" => array(
1502                                         "PRIMARY" => array("uid"),
1503                                         "nickname" => array("nickname(32)"),
1504                                         )
1505                         );
1506         $database["userd"] = array(
1507                         "fields" => array(
1508                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1509                                         "username" => array("type" => "varchar(255)", "not null" => "1"),
1510                                         ),
1511                         "indexes" => array(
1512                                         "PRIMARY" => array("id"),
1513                                         "username" => array("username(32)"),
1514                                         )
1515                         );
1516         $database["workerqueue"] = array(
1517                         "fields" => array(
1518                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1519                                         "parameter" => array("type" => "text"),
1520                                         "priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1521                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1522                                         "pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1523                                         "executed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1524                                         ),
1525                         "indexes" => array(
1526                                         "PRIMARY" => array("id"),
1527                                         "created" => array("created"),
1528                                         )
1529                         );
1530
1531         return($database);
1532 }
1533
1534
1535 /*
1536  * run from command line
1537  */
1538 function dbstructure_run(&$argv, &$argc) {
1539         global $a, $db;
1540
1541         if(is_null($a)){
1542                 $a = new App;
1543         }
1544
1545         if(is_null($db)) {
1546                 @include(".htconfig.php");
1547                 require_once("include/dba.php");
1548                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
1549                         unset($db_host, $db_user, $db_pass, $db_data);
1550         }
1551
1552         if ($argc==2) {
1553                 switch ($argv[1]) {
1554                         case "dryrun":
1555                                 update_structure(true, false);
1556                                 return;
1557                         case "update":
1558                                 update_structure(true, true);
1559
1560                                 $build = get_config('system','build');
1561                                 if (!x($build)) {
1562                                         set_config('system','build',DB_UPDATE_VERSION);
1563                                         $build = DB_UPDATE_VERSION;
1564                                 }
1565
1566                                 $stored = intval($build);
1567                                 $current = intval(DB_UPDATE_VERSION);
1568
1569                                 // run any left update_nnnn functions in update.php
1570                                 for($x = $stored; $x < $current; $x ++) {
1571                                         $r = run_update_function($x);
1572                                         if (!$r) break;
1573                                 }
1574
1575                                 set_config('system','build',DB_UPDATE_VERSION);
1576                                 return;
1577                         case "dumpsql":
1578                                 // For the dump that is used to create the database.sql we always assume utfmb4
1579                                 $charset = "utf8mb4";
1580                                 print_structure(db_definition($charset), $charset);
1581                                 return;
1582                 }
1583         }
1584
1585
1586         // print help
1587         echo $argv[0]." <command>\n";
1588         echo "\n";
1589         echo "Commands:\n";
1590         echo "dryrun            show database update schema queries without running them\n";
1591         echo "update            update database schema\n";
1592         echo "dumpsql           dump database schema\n";
1593         return;
1594
1595 }
1596
1597 if (array_search(__file__,get_included_files())===0){
1598         dbstructure_run($_SERVER["argv"],$_SERVER["argc"]);
1599         killme();
1600 }