]> git.mxchange.org Git - friendica.git/blob - include/dbstructure.php
Merge remote-tracking branch 'friendica/develop' into develop
[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" => array("uid"),
590                                         "addr_uid" => array("addr", "uid"),
591                                         "nurl" => array("nurl"),
592                                         )
593                         );
594         $database["conv"] = array(
595                         "fields" => array(
596                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
597                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
598                                         "recips" => array("type" => "mediumtext"),
599                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
600                                         "creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
601                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
602                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
603                                         "subject" => array("type" => "mediumtext"),
604                                         ),
605                         "indexes" => array(
606                                         "PRIMARY" => array("id"),
607                                         "uid" => array("uid"),
608                                         )
609                         );
610         $database["deliverq"] = array(
611                         "fields" => array(
612                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
613                                         "cmd" => array("type" => "varbinary(32)", "not null" => "1", "default" => ""),
614                                         "item" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
615                                         "contact" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
616                                         ),
617                         "indexes" => array(
618                                         "PRIMARY" => array("id"),
619                                         "cmd_item_contact" => array("UNIQUE", "cmd", "item", "contact"),
620                                         )
621                         );
622         $database["event"] = array(
623                         "fields" => array(
624                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
625                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
626                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
627                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
628                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
629                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
630                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
631                                         "start" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
632                                         "finish" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
633                                         "summary" => array("type" => "text"),
634                                         "desc" => array("type" => "text"),
635                                         "location" => array("type" => "text"),
636                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
637                                         "nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
638                                         "adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
639                                         "ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
640                                         "allow_cid" => array("type" => "mediumtext"),
641                                         "allow_gid" => array("type" => "mediumtext"),
642                                         "deny_cid" => array("type" => "mediumtext"),
643                                         "deny_gid" => array("type" => "mediumtext"),
644                                         ),
645                         "indexes" => array(
646                                         "PRIMARY" => array("id"),
647                                         "uid" => array("uid"),
648                                         )
649                         );
650         $database["fcontact"] = array(
651                         "fields" => array(
652                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
653                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
654                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
655                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
656                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
657                                         "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
658                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
659                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
660                                         "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
661                                         "notify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
662                                         "poll" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
663                                         "confirm" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
664                                         "priority" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
665                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
666                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
667                                         "pubkey" => array("type" => "text"),
668                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
669                                         ),
670                         "indexes" => array(
671                                         "PRIMARY" => array("id"),
672                                         "addr" => array("addr"),
673                                         )
674                         );
675         $database["ffinder"] = array(
676                         "fields" => array(
677                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
678                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
679                                         "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
680                                         "fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
681                                         ),
682                         "indexes" => array(
683                                         "PRIMARY" => array("id"),
684                                         )
685                         );
686         $database["fserver"] = array(
687                         "fields" => array(
688                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
689                                         "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
690                                         "posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
691                                         "key" => array("type" => "text"),
692                                         ),
693                         "indexes" => array(
694                                         "PRIMARY" => array("id"),
695                                         "server" => array("server"),
696                                         )
697                         );
698         $database["fsuggest"] = array(
699                         "fields" => array(
700                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
701                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
702                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
703                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
704                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
705                                         "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
706                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
707                                         "note" => array("type" => "text"),
708                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
709                                         ),
710                         "indexes" => array(
711                                         "PRIMARY" => array("id"),
712                                         )
713                         );
714         $database["gcign"] = array(
715                         "fields" => array(
716                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
717                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
718                                         "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
719                                         ),
720                         "indexes" => array(
721                                         "PRIMARY" => array("id"),
722                                         "uid" => array("uid"),
723                                         "gcid" => array("gcid"),
724                                         )
725                         );
726         $database["gcontact"] = array(
727                         "fields" => array(
728                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
729                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
730                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
731                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
732                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
733                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
734                                         "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
735                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
736                                         "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
737                                         "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
738                                         "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
739                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
740                                         "about" => array("type" => "text"),
741                                         "keywords" => array("type" => "text"),
742                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
743                                         "birthday" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
744                                         "community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
745                                         "contact-type" => array("type" => "tinyint(1)", "not null" => "1", "default" => "-1"),
746                                         "hide" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
747                                         "nsfw" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
748                                         "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
749                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
750                                         "notify" => array("type" => "text"),
751                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
752                                         "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
753                                         "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
754                                         ),
755                         "indexes" => array(
756                                         "PRIMARY" => array("id"),
757                                         "nurl" => array("nurl"),
758                                         "name" => array("name"),
759                                         "nick" => array("nick"),
760                                         "addr" => array("addr"),
761                                         "updated" => array("updated"),
762                                         )
763                         );
764         $database["glink"] = array(
765                         "fields" => array(
766                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
767                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
768                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
769                                         "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
770                                         "zcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
771                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
772                                         ),
773                         "indexes" => array(
774                                         "PRIMARY" => array("id"),
775                                         "cid_uid_gcid_zcid" => array("cid","uid","gcid","zcid"),
776                                         "gcid" => array("gcid"),
777                                         "zcid" => array("zcid"),
778                                         )
779                         );
780         $database["group"] = array(
781                         "fields" => array(
782                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
783                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
784                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
785                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
786                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
787                                         ),
788                         "indexes" => array(
789                                         "PRIMARY" => array("id"),
790                                         "uid" => array("uid"),
791                                         )
792                         );
793         $database["group_member"] = array(
794                         "fields" => array(
795                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
796                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
797                                         "gid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
798                                         "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
799                                         ),
800                         "indexes" => array(
801                                         "PRIMARY" => array("id"),
802                                         "uid_gid_contactid" => array("uid","gid","contact-id"),
803                                         )
804                         );
805         $database["gserver"] = array(
806                         "fields" => array(
807                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
808                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
809                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
810                                         "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
811                                         "site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
812                                         "info" => array("type" => "text"),
813                                         "register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
814                                         "poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
815                                         "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
816                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
817                                         "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
818                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
819                                         "last_poco_query" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
820                                         "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
821                                         "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
822                                         ),
823                         "indexes" => array(
824                                         "PRIMARY" => array("id"),
825                                         "nurl" => array("nurl"),
826                                         )
827                         );
828         $database["hook"] = array(
829                         "fields" => array(
830                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
831                                         "hook" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
832                                         "file" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
833                                         "function" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
834                                         "priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
835                                         ),
836                         "indexes" => array(
837                                         "PRIMARY" => array("id"),
838                                         "hook_file_function" => array("hook(30)","file(60)","function(30)"),
839                                         )
840                         );
841         $database["intro"] = array(
842                         "fields" => array(
843                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
844                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
845                                         "fid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
846                                         "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
847                                         "knowyou" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
848                                         "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
849                                         "note" => array("type" => "text"),
850                                         "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
851                                         "datetime" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
852                                         "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
853                                         "ignore" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
854                                         ),
855                         "indexes" => array(
856                                         "PRIMARY" => array("id"),
857                                         )
858                         );
859         $database["item"] = array(
860                         "fields" => array(
861                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
862                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
863                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
864                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
865                                         "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
866                                         "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
867                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
868                                         "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
869                                         "gravity" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
870                                         "parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
871                                         "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
872                                         "extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
873                                         "thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
874                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
875                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
876                                         "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
877                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
878                                         "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
879                                         "owner-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
880                                         "owner-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
881                                         "owner-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
882                                         "owner-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
883                                         "author-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
884                                         "author-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
885                                         "author-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
886                                         "author-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
887                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
888                                         "body" => array("type" => "mediumtext"),
889                                         "app" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
890                                         "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
891                                         "object-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
892                                         "object" => array("type" => "text"),
893                                         "target-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
894                                         "target" => array("type" => "text"),
895                                         "postopts" => array("type" => "text"),
896                                         "plink" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
897                                         "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
898                                         "event-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
899                                         "tag" => array("type" => "mediumtext"),
900                                         "attach" => array("type" => "mediumtext"),
901                                         "inform" => array("type" => "mediumtext"),
902                                         "file" => array("type" => "mediumtext"),
903                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
904                                         "coord" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
905                                         "allow_cid" => array("type" => "mediumtext"),
906                                         "allow_gid" => array("type" => "mediumtext"),
907                                         "deny_cid" => array("type" => "mediumtext"),
908                                         "deny_gid" => array("type" => "mediumtext"),
909                                         "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
910                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
911                                         "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
912                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
913                                         "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
914                                         "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
915                                         "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
916                                         "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
917                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
918                                         "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
919                                         "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
920                                         "last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"),
921                                         "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
922                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
923                                         "rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
924                                         "rendered-html" => array("type" => "mediumtext"),
925                                         "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
926                                         ),
927                         "indexes" => array(
928                                         "PRIMARY" => array("id"),
929                                         "guid" => array("guid"),
930                                         "uri" => array("uri"),
931                                         "parent" => array("parent"),
932                                         "parent-uri" => array("parent-uri"),
933                                         "extid" => array("extid"),
934                                         "uid_id" => array("uid","id"),
935                                         "uid_created" => array("uid","created"),
936                                         "uid_unseen_contactid" => array("uid","unseen","contact-id"),
937                                         "uid_network_received" => array("uid","network","received"),
938                                         "uid_received" => array("uid","received"),
939                                         "uid_network_commented" => array("uid","network","commented"),
940                                         "uid_commented" => array("uid","commented"),
941                                         "uid_title" => array("uid","title"),
942                                         "uid_thrparent" => array("uid","thr-parent"),
943                                         "uid_parenturi" => array("uid","parent-uri"),
944                                         "uid_contactid_id" => array("uid","contact-id","id"),
945                                         "uid_contactid_created" => array("uid","contact-id","created"),
946                                         "gcontactid_uid_created" => array("gcontact-id","uid","created"),
947                                         "authorid_created" => array("author-id","created"),
948                                         "ownerid_created" => array("owner-id","created"),
949                                         "wall_body" => array("wall","body(6)"),
950                                         "uid_visible_moderated_created" => array("uid","visible","moderated","created"),
951                                         "uid_uri" => array("uid", "uri"),
952                                         "uid_wall_created" => array("uid","wall","created"),
953                                         "resource-id" => array("resource-id"),
954                                         "uid_type" => array("uid","type"),
955                                         "uid_starred_id" => array("uid","starred", "id"),
956                                         "contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
957                                         "uid_wall_parent_created" => array("uid","wall","parent","created"),
958                                         "uid_type_changed" => array("uid","type","changed"),
959                                         "contactid_verb" => array("contact-id","verb"),
960                                         "deleted_changed" => array("deleted","changed"),
961                                         "uid_wall_changed" => array("uid","wall","changed"),
962                                         "uid_eventid" => array("uid","event-id"),
963                                         "uid_authorlink" => array("uid","author-link"),
964                                         "uid_ownerlink" => array("uid","owner-link"),
965                                         )
966                         );
967         $database["item_id"] = array(
968                         "fields" => array(
969                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
970                                         "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
971                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
972                                         "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
973                                         "service" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
974                                         ),
975                         "indexes" => array(
976                                         "PRIMARY" => array("id"),
977                                         "uid" => array("uid"),
978                                         "sid" => array("sid"),
979                                         "service" => array("service"),
980                                         "iid" => array("iid"),
981                                         )
982                         );
983         $database["locks"] = array(
984                         "fields" => array(
985                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
986                                         "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
987                                         "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
988                                         "created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
989                                         ),
990                         "indexes" => array(
991                                         "PRIMARY" => array("id"),
992                                         )
993                         );
994         $database["mail"] = array(
995                         "fields" => array(
996                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
997                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
998                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
999                                         "from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1000                                         "from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1001                                         "from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1002                                         "contact-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1003                                         "convid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1004                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1005                                         "body" => array("type" => "mediumtext"),
1006                                         "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1007                                         "reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1008                                         "replied" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1009                                         "unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1010                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1011                                         "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1012                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1013                                         ),
1014                         "indexes" => array(
1015                                         "PRIMARY" => array("id"),
1016                                         "uid" => array("uid"),
1017                                         "guid" => array("guid"),
1018                                         "convid" => array("convid"),
1019                                         "reply" => array("reply"),
1020                                         "uri" => array("uri"),
1021                                         "parent-uri" => array("parent-uri"),
1022                                         )
1023                         );
1024         $database["mailacct"] = array(
1025                         "fields" => array(
1026                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1027                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1028                                         "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1029                                         "port" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1030                                         "ssltype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1031                                         "mailbox" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1032                                         "user" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1033                                         "pass" => array("type" => "text"),
1034                                         "reply_to" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1035                                         "action" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1036                                         "movetofolder" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1037                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1038                                         "last_check" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1039                                         ),
1040                         "indexes" => array(
1041                                         "PRIMARY" => array("id"),
1042                                         )
1043                         );
1044         $database["manage"] = array(
1045                         "fields" => array(
1046                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1047                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1048                                         "mid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1049                                         ),
1050                         "indexes" => array(
1051                                         "PRIMARY" => array("id"),
1052                                         "uid_mid" => array("uid","mid"),
1053                                         )
1054                         );
1055         $database["notify"] = array(
1056                         "fields" => array(
1057                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1058                                         "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1059                                         "type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1060                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1061                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1062                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1063                                         "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1064                                         "msg" => array("type" => "mediumtext"),
1065                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1066                                         "link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1067                                         "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1068                                         "parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1069                                         "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1070                                         "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1071                                         "otype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1072                                         "name_cache" => array("type" => "tinytext"),
1073                                         "msg_cache" => array("type" => "mediumtext")
1074                                         ),
1075                         "indexes" => array(
1076                                         "PRIMARY" => array("id"),
1077                                         "uid" => array("uid"),
1078                                         )
1079                         );
1080         $database["notify-threads"] = array(
1081                         "fields" => array(
1082                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1083                                         "notify-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1084                                         "master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1085                                         "parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1086                                         "receiver-uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1087                                         ),
1088                         "indexes" => array(
1089                                         "PRIMARY" => array("id"),
1090                                         "master-parent-item" => array("master-parent-item"),
1091                                         "receiver-uid" => array("receiver-uid"),
1092                                         )
1093                         );
1094         $database["oembed"] = array(
1095                         "fields" => array(
1096                                         "url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
1097                                         "content" => array("type" => "text"),
1098                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1099                                         ),
1100                         "indexes" => array(
1101                                         "PRIMARY" => array("url"),
1102                                         "created" => array("created"),
1103                                         )
1104                         );
1105         $database["parsed_url"] = array(
1106                         "fields" => array(
1107                                         "url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
1108                                         "guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1109                                         "oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1110                                         "content" => array("type" => "text"),
1111                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1112                                         ),
1113                         "indexes" => array(
1114                                         "PRIMARY" => array("url", "guessing", "oembed"),
1115                                         "created" => array("created"),
1116                                         )
1117                         );
1118         $database["pconfig"] = array(
1119                         "fields" => array(
1120                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1121                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1122                                         "cat" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
1123                                         "k" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
1124                                         "v" => array("type" => "mediumtext"),
1125                                         ),
1126                         "indexes" => array(
1127                                         "PRIMARY" => array("id"),
1128                                         "uid_cat_k" => array("UNIQUE", "uid", "cat", "k"),
1129                                         )
1130                         );
1131         $database["photo"] = array(
1132                         "fields" => array(
1133                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1134                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1135                                         "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1136                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1137                                         "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1138                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1139                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1140                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1141                                         "desc" => array("type" => "text"),
1142                                         "album" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1143                                         "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1144                                         "type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
1145                                         "height" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1146                                         "width" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1147                                         "datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1148                                         "data" => array("type" => "mediumblob", "not null" => "1"),
1149                                         "scale" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
1150                                         "profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1151                                         "allow_cid" => array("type" => "mediumtext"),
1152                                         "allow_gid" => array("type" => "mediumtext"),
1153                                         "deny_cid" => array("type" => "mediumtext"),
1154                                         "deny_gid" => array("type" => "mediumtext"),
1155                                         ),
1156                         "indexes" => array(
1157                                         "PRIMARY" => array("id"),
1158                                         "uid_contactid" => array("uid", "contact-id"),
1159                                         "uid_profile" => array("uid", "profile"),
1160                                         "uid_album_created" => array("uid", "album", "created"),
1161                                         "resource-id" => array("resource-id"),
1162                                         "guid" => array("guid"),
1163                                         )
1164                         );
1165         $database["poll"] = array(
1166                         "fields" => array(
1167                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1168                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1169                                         "q0" => array("type" => "mediumtext"),
1170                                         "q1" => array("type" => "mediumtext"),
1171                                         "q2" => array("type" => "mediumtext"),
1172                                         "q3" => array("type" => "mediumtext"),
1173                                         "q4" => array("type" => "mediumtext"),
1174                                         "q5" => array("type" => "mediumtext"),
1175                                         "q6" => array("type" => "mediumtext"),
1176                                         "q7" => array("type" => "mediumtext"),
1177                                         "q8" => array("type" => "mediumtext"),
1178                                         "q9" => array("type" => "mediumtext"),
1179                                         ),
1180                         "indexes" => array(
1181                                         "PRIMARY" => array("id"),
1182                                         "uid" => array("uid"),
1183                                         )
1184                         );
1185         $database["poll_result"] = array(
1186                         "fields" => array(
1187                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1188                                         "poll_id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1189                                         "choice" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1190                                         ),
1191                         "indexes" => array(
1192                                         "PRIMARY" => array("id"),
1193                                         "poll_id" => array("poll_id"),
1194                                         "choice" => array("choice"),
1195                                         )
1196                         );
1197         $database["process"] = array(
1198                         "fields" => array(
1199                                         "pid" => array("type" => "int(10) unsigned", "not null" => "1", "primary" => "1"),
1200                                         "command" => array("type" => "varbinary(32)", "not null" => "1", "default" => ""),
1201                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1202                                         ),
1203                         "indexes" => array(
1204                                         "PRIMARY" => array("pid"),
1205                                         "command" => array("command"),
1206                                         )
1207                         );
1208         $database["profile"] = array(
1209                         "fields" => array(
1210                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1211                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1212                                         "profile-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1213                                         "is-default" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1214                                         "hide-friends" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1215                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1216                                         "pdesc" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1217                                         "dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
1218                                         "address" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1219                                         "locality" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1220                                         "region" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1221                                         "postal-code" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1222                                         "country-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1223                                         "hometown" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1224                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1225                                         "marital" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1226                                         "with" => array("type" => "text"),
1227                                         "howlong" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1228                                         "sexual" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1229                                         "politic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1230                                         "religion" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1231                                         "pub_keywords" => array("type" => "text"),
1232                                         "prv_keywords" => array("type" => "text"),
1233                                         "likes" => array("type" => "text"),
1234                                         "dislikes" => array("type" => "text"),
1235                                         "about" => array("type" => "text"),
1236                                         "summary" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1237                                         "music" => array("type" => "text"),
1238                                         "book" => array("type" => "text"),
1239                                         "tv" => array("type" => "text"),
1240                                         "film" => array("type" => "text"),
1241                                         "interest" => array("type" => "text"),
1242                                         "romance" => array("type" => "text"),
1243                                         "work" => array("type" => "text"),
1244                                         "education" => array("type" => "text"),
1245                                         "contact" => array("type" => "text"),
1246                                         "homepage" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1247                                         "xmpp" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1248                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1249                                         "thumb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1250                                         "publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1251                                         "net-publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1252                                         ),
1253                         "indexes" => array(
1254                                         "PRIMARY" => array("id"),
1255                                         "hometown" => array("hometown"),
1256                                         )
1257                         );
1258         $database["profile_check"] = array(
1259                         "fields" => array(
1260                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1261                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1262                                         "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1263                                         "dfrn_id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1264                                         "sec" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1265                                         "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1266                                         ),
1267                         "indexes" => array(
1268                                         "PRIMARY" => array("id"),
1269                                         )
1270                         );
1271         $database["push_subscriber"] = array(
1272                         "fields" => array(
1273                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1274                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1275                                         "callback_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1276                                         "topic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1277                                         "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1278                                         "push" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1279                                         "last_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1280                                         "secret" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1281                                         ),
1282                         "indexes" => array(
1283                                         "PRIMARY" => array("id"),
1284                                         )
1285                         );
1286         $database["queue"] = array(
1287                         "fields" => array(
1288                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1289                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1290                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1291                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1292                                         "last" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1293                                         "content" => array("type" => "mediumtext"),
1294                                         "batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1295                                         ),
1296                         "indexes" => array(
1297                                         "PRIMARY" => array("id"),
1298                                         "cid" => array("cid"),
1299                                         "created" => array("created"),
1300                                         "last" => array("last"),
1301                                         "network" => array("network"),
1302                                         "batch" => array("batch"),
1303                                         )
1304                         );
1305         $database["register"] = array(
1306                         "fields" => array(
1307                                         "id" => array("type" => "int(11) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1308                                         "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1309                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1310                                         "uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1311                                         "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1312                                         "language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1313                                         "note" => array("type" => "text"),
1314                                         ),
1315                         "indexes" => array(
1316                                         "PRIMARY" => array("id"),
1317                                         )
1318                         );
1319         $database["search"] = array(
1320                         "fields" => array(
1321                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1322                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1323                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1324                                         ),
1325                         "indexes" => array(
1326                                         "PRIMARY" => array("id"),
1327                                         "uid" => array("uid"),
1328                                         "term" => array("term"),
1329                                         )
1330                         );
1331         $database["session"] = array(
1332                         "fields" => array(
1333                                         "id" => array("type" => "bigint(20) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1334                                         "sid" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
1335                                         "data" => array("type" => "text"),
1336                                         "expire" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1337                                         ),
1338                         "indexes" => array(
1339                                         "PRIMARY" => array("id"),
1340                                         "sid" => array("sid"),
1341                                         "expire" => array("expire"),
1342                                         )
1343                         );
1344         $database["sign"] = array(
1345                         "fields" => array(
1346                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1347                                         "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1348                                         "signed_text" => array("type" => "mediumtext"),
1349                                         "signature" => array("type" => "text"),
1350                                         "signer" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1351                                         ),
1352                         "indexes" => array(
1353                                         "PRIMARY" => array("id"),
1354                                         "iid" => array("iid"),
1355                                         )
1356                         );
1357         $database["spam"] = array(
1358                         "fields" => array(
1359                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1360                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1361                                         "spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1362                                         "ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1363                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1364                                         "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1365                                         ),
1366                         "indexes" => array(
1367                                         "PRIMARY" => array("id"),
1368                                         "uid" => array("uid"),
1369                                         "spam" => array("spam"),
1370                                         "ham" => array("ham"),
1371                                         "term" => array("term"),
1372                                         )
1373                         );
1374         $database["term"] = array(
1375                         "fields" => array(
1376                                         "tid" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1377                                         "oid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1378                                         "otype" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1379                                         "type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1380                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1381                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1382                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1383                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1384                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1385                                         "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1386                                         "aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1387                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1388                                         ),
1389                         "indexes" => array(
1390                                         "PRIMARY" => array("tid"),
1391                                         "oid_otype_type_term" => array("oid","otype","type","term"),
1392                                         "uid_term_tid" => array("uid","term","tid"),
1393                                         "type_term" => array("type","term"),
1394                                         "uid_otype_type_term_global_created" => array("uid","otype","type","term","global","created"),
1395                                         "otype_type_term_tid" => array("otype","type","term","tid"),
1396                                         "uid_otype_type_url" => array("uid","otype","type","url"),
1397                                         "guid" => array("guid"),
1398                                         )
1399                         );
1400         $database["thread"] = array(
1401                         "fields" => array(
1402                                         "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1"),
1403                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1404                                         "contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1405                                         "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1406                                         "owner-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1407                                         "author-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1408                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1409                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1410                                         "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1411                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1412                                         "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1413                                         "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1414                                         "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1415                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1416                                         "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1417                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1418                                         "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1419                                         "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1420                                         "ignored" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1421                                         "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1422                                         "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
1423                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1424                                         "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1425                                         "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1426                                         "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1427                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1428                                         ),
1429                         "indexes" => array(
1430                                         "PRIMARY" => array("iid"),
1431                                         "created" => array("created"),
1432                                         "commented" => array("commented"),
1433                                         "uid_network_commented" => array("uid","network","commented"),
1434                                         "uid_network_created" => array("uid","network","created"),
1435                                         "uid_contactid_commented" => array("uid","contact-id","commented"),
1436                                         "uid_contactid_created" => array("uid","contact-id","created"),
1437                                         "uid_gcontactid_commented" => array("uid","gcontact-id","commented"),
1438                                         "uid_gcontactid_created" => array("uid","gcontact-id","created"),
1439                                         "wall_private_received" => array("wall","private","received"),
1440                                         "uid_created" => array("uid","created"),
1441                                         "uid_commented" => array("uid","commented"),
1442                                         )
1443                         );
1444         $database["tokens"] = array(
1445                         "fields" => array(
1446                                         "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
1447                                         "secret" => array("type" => "text"),
1448                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
1449                                         "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1450                                         "scope" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
1451                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1452                                         ),
1453                         "indexes" => array(
1454                                         "PRIMARY" => array("id"),
1455                                         )
1456                         );
1457         $database["user"] = array(
1458                         "fields" => array(
1459                                         "uid" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1460                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1461                                         "username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1462                                         "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1463                                         "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1464                                         "email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1465                                         "openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1466                                         "timezone" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
1467                                         "language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
1468                                         "register_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1469                                         "login_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1470                                         "default-location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1471                                         "allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1472                                         "theme" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1473                                         "pubkey" => array("type" => "text"),
1474                                         "prvkey" => array("type" => "text"),
1475                                         "spubkey" => array("type" => "text"),
1476                                         "sprvkey" => array("type" => "text"),
1477                                         "verified" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1478                                         "blocked" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1479                                         "blockwall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1480                                         "hidewall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1481                                         "blocktags" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1482                                         "unkmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1483                                         "cntunkmail" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1484                                         "notify-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "65535"),
1485                                         "page-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1486                                         "account-type" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1487                                         "prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1488                                         "pwdreset" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1489                                         "maxreq" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1490                                         "expire" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1491                                         "account_removed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1492                                         "account_expired" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1493                                         "account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1494                                         "expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1495                                         "service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1496                                         "def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1497                                         "allow_cid" => array("type" => "mediumtext"),
1498                                         "allow_gid" => array("type" => "mediumtext"),
1499                                         "deny_cid" => array("type" => "mediumtext"),
1500                                         "deny_gid" => array("type" => "mediumtext"),
1501                                         "openidserver" => array("type" => "text"),
1502                                         ),
1503                         "indexes" => array(
1504                                         "PRIMARY" => array("uid"),
1505                                         "nickname" => array("nickname"),
1506                                         )
1507                         );
1508         $database["userd"] = array(
1509                         "fields" => array(
1510                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1511                                         "username" => array("type" => "varchar(255)", "not null" => "1"),
1512                                         ),
1513                         "indexes" => array(
1514                                         "PRIMARY" => array("id"),
1515                                         "username" => array("username"),
1516                                         )
1517                         );
1518         $database["workerqueue"] = array(
1519                         "fields" => array(
1520                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1521                                         "parameter" => array("type" => "text"),
1522                                         "priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1523                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1524                                         "pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1525                                         "executed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1526                                         ),
1527                         "indexes" => array(
1528                                         "PRIMARY" => array("id"),
1529                                         "created" => array("created"),
1530                                         )
1531                         );
1532
1533         return($database);
1534 }
1535
1536
1537 /*
1538  * run from command line
1539  */
1540 function dbstructure_run(&$argv, &$argc) {
1541         global $a, $db;
1542
1543         if(is_null($a)){
1544                 $a = new App;
1545         }
1546
1547         if(is_null($db)) {
1548                 @include(".htconfig.php");
1549                 require_once("include/dba.php");
1550                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
1551                         unset($db_host, $db_user, $db_pass, $db_data);
1552         }
1553
1554         if ($argc==2) {
1555                 switch ($argv[1]) {
1556                         case "dryrun":
1557                                 update_structure(true, false);
1558                                 return;
1559                         case "update":
1560                                 update_structure(true, true);
1561
1562                                 $build = get_config('system','build');
1563                                 if (!x($build)) {
1564                                         set_config('system','build',DB_UPDATE_VERSION);
1565                                         $build = DB_UPDATE_VERSION;
1566                                 }
1567
1568                                 $stored = intval($build);
1569                                 $current = intval(DB_UPDATE_VERSION);
1570
1571                                 // run any left update_nnnn functions in update.php
1572                                 for($x = $stored; $x < $current; $x ++) {
1573                                         $r = run_update_function($x);
1574                                         if (!$r) break;
1575                                 }
1576
1577                                 set_config('system','build',DB_UPDATE_VERSION);
1578                                 return;
1579                         case "dumpsql":
1580                                 // For the dump that is used to create the database.sql we always assume utfmb4
1581                                 $charset = "utf8mb4";
1582                                 print_structure(db_definition($charset), $charset);
1583                                 return;
1584                 }
1585         }
1586
1587
1588         // print help
1589         echo $argv[0]." <command>\n";
1590         echo "\n";
1591         echo "Commands:\n";
1592         echo "dryrun            show database update schema queries without running them\n";
1593         echo "update            update database schema\n";
1594         echo "dumpsql           dump database schema\n";
1595         return;
1596
1597 }
1598
1599 if (array_search(__file__,get_included_files())===0){
1600         dbstructure_run($_SERVER["argv"],$_SERVER["argc"]);
1601         killme();
1602 }