2 require_once("boot.php");
3 require_once("include/text.php");
5 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
8 * send the email and do what is needed to do on update fails
10 * @param update_id (int) number of failed update
11 * @param error_message (str) error message
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)",
20 // every admin could had different language
22 foreach ($adminlist as $admin) {
23 $lang = (($admin['language'])?$admin['language']:'en');
26 $preamble = deindent(t("
27 The friendica developers released update %s recently,
28 but when I tried to install it, something went terribly wrong.
29 This needs to be fixed soon and I can't do it alone. Please contact a
30 friendica developer if you can not help me on your own. My database might be invalid."));
31 $body = t("The error message is\n[pre]%s[/pre]");
32 $preamble = sprintf($preamble, $update_id);
33 $body = sprintf($body, $error_message);
36 'type' => "SYSTEM_EMAIL",
37 'to_email' => $admin['email'],
38 'preamble' => $preamble,
48 $email_tpl = get_intltext_template("update_fail_eml.tpl");
49 $email_msg = replace_macros($email_tpl, array(
50 '$sitename' => $a->config['sitename'],
51 '$siteurl' => $a->get_baseurl(),
52 '$update' => DB_UPDATE_VERSION,
53 '$error' => sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION)
55 $subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
56 require_once('include/email.php');
57 $subject = email_header_encode($subject,'UTF-8');
58 mail($a->config['admin_email'], $subject, $email_msg,
59 'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME']."\n"
60 .'Content-type: text/plain; charset=UTF-8'."\n"
61 .'Content-transfer-encoding: 8bit');
64 logger("CRITICAL: Database structure update failed: ".$retval);
68 function table_structure($table) {
69 $structures = q("DESCRIBE `%s`", $table);
71 $indexes = q("SHOW INDEX FROM `%s`", $table);
76 if (is_array($indexes))
77 foreach ($indexes AS $index) {
78 if ($index["Index_type"] == "FULLTEXT")
81 $column = $index["Column_name"];
82 if ($index["Sub_part"] != "")
83 $column .= "(".$index["Sub_part"].")";
85 $indexdata[$index["Key_name"]][] = $column;
88 if (is_array($structures)) {
89 foreach($structures AS $field) {
90 $fielddata[$field["Field"]]["type"] = $field["Type"];
91 if ($field["Null"] == "NO")
92 $fielddata[$field["Field"]]["not null"] = true;
94 if (isset($field["Default"]))
95 $fielddata[$field["Field"]]["default"] = $field["Default"];
97 if ($field["Extra"] != "")
98 $fielddata[$field["Field"]]["extra"] = $field["Extra"];
100 if ($field["Key"] == "PRI")
101 $fielddata[$field["Field"]]["primary"] = true;
104 return(array("fields"=>$fielddata, "indexes"=>$indexdata));
107 function print_structure($database) {
108 echo "-- ------------------------------------------\n";
109 echo "-- ".FRIENDICA_PLATFORM." ".FRIENDICA_VERSION." (".FRIENDICA_CODENAME,")\n";
110 echo "-- DB_UPDATE_VERSION ".DB_UPDATE_VERSION."\n";
111 echo "-- ------------------------------------------\n\n\n";
112 foreach ($database AS $name => $structure) {
114 echo "-- TABLE $name\n";
116 db_create_table($name, $structure['fields'], true, false, $structure["indexes"]);
122 function update_structure($verbose, $action, $tables=null, $definition=null) {
127 logger('updating structure', LOGGER_DEBUG);
129 // Get the current structure
132 if (is_null($tables))
133 $tables = q("show tables");
135 foreach ($tables AS $table) {
136 $table = current($table);
138 $database[$table] = table_structure($table);
141 // Get the definition
142 if (is_null($definition))
143 $definition = db_definition();
147 foreach ($definition AS $name => $structure) {
148 $is_new_table = False;
150 if (!isset($database[$name])) {
151 $r = db_create_table($name, $structure["fields"], $verbose, $action, $structure['indexes']);
153 $errors .= t('Errors encountered creating database tables.').$name.EOL;
155 $is_new_table = True;
157 // Drop the index if it isn't present in the definition
158 // or the definition differ from current status
159 // and index name doesn't start with "local_"
160 foreach ($database[$name]["indexes"] AS $indexname => $fieldnames) {
161 $current_index_definition = implode(",",$fieldnames);
162 if (isset($structure["indexes"][$indexname])) {
163 $new_index_definition = implode(",",$structure["indexes"][$indexname]);
165 $new_index_definition = "__NOT_SET__";
167 if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
168 $sql2=db_drop_index($indexname);
170 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
175 // Compare the field structure field by field
176 foreach ($structure["fields"] AS $fieldname => $parameters) {
177 if (!isset($database[$name]["fields"][$fieldname])) {
178 $sql2=db_add_table_field($fieldname, $parameters);
180 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
184 // Compare the field definition
185 $current_field_definition = implode(",",$database[$name]["fields"][$fieldname]);
186 $new_field_definition = implode(",",$parameters);
187 if ($current_field_definition != $new_field_definition) {
188 $sql2=db_modify_table_field($fieldname, $parameters);
190 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
199 // Create the index if the index don't exists in database
200 // or the definition differ from the current status.
201 // Don't create keys if table is new
202 if (!$is_new_table) {
203 foreach ($structure["indexes"] AS $indexname => $fieldnames) {
204 if (isset($database[$name]["indexes"][$indexname])) {
205 $current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
207 $current_index_definition = "__NOT_SET__";
209 $new_index_definition = implode(",",$fieldnames);
210 if ($current_index_definition != $new_index_definition) {
211 $sql2=db_create_index($indexname, $fieldnames);
214 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
230 $errors .= t('Errors encountered performing database changes.').$sql3.EOL;
238 function db_field_command($parameters, $create = true) {
239 $fieldstruct = $parameters["type"];
241 if ($parameters["not null"])
242 $fieldstruct .= " NOT NULL";
244 if (isset($parameters["default"])){
245 if (strpos(strtolower($parameters["type"]),"int")!==false) {
246 $fieldstruct .= " DEFAULT ".$parameters["default"];
248 $fieldstruct .= " DEFAULT '".$parameters["default"]."'";
251 if ($parameters["extra"] != "")
252 $fieldstruct .= " ".$parameters["extra"];
254 /*if (($parameters["primary"] != "") AND $create)
255 $fieldstruct .= " PRIMARY KEY";*/
257 return($fieldstruct);
260 function db_create_table($name, $fields, $verbose, $action, $indexes=null) {
268 $primary_keys = array();
269 foreach($fields AS $fieldname => $field) {
270 $sql_rows[] = "`".dbesc($fieldname)."` ".db_field_command($field);
271 if (x($field,'primary') and $field['primary']!=''){
272 $primary_keys[] = $fieldname;
276 if (!is_null($indexes)) {
277 foreach ($indexes AS $indexname => $fieldnames) {
278 $sql_index = db_create_index($indexname, $fieldnames, "");
279 if (!is_null($sql_index)) $sql_rows[] = $sql_index;
283 $sql = implode(",\n\t", $sql_rows);
285 $sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", dbesc($name)).$sql."\n) DEFAULT CHARSET=utf8";
295 function db_add_table_field($fieldname, $parameters) {
296 $sql = sprintf("ADD `%s` %s", dbesc($fieldname), db_field_command($parameters));
300 function db_modify_table_field($fieldname, $parameters) {
301 $sql = sprintf("MODIFY `%s` %s", dbesc($fieldname), db_field_command($parameters, false));
305 function db_drop_index($indexname) {
306 $sql = sprintf("DROP INDEX `%s`", dbesc($indexname));
310 function db_create_index($indexname, $fieldnames, $method="ADD") {
312 $method = strtoupper(trim($method));
313 if ($method!="" && $method!="ADD") {
314 throw new Exception("Invalid parameter 'method' in db_create_index(): '$method'");
319 if ($indexname == "PRIMARY") {
320 return sprintf("%s PRIMARY KEY(`%s`)", $method, implode("`,`", $fieldnames));
324 foreach ($fieldnames AS $fieldname) {
328 if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches))
329 $names .= "`".dbesc($matches[1])."`(".intval($matches[2]).")";
331 $names .= "`".dbesc($fieldname)."`";
335 $sql = sprintf("%s INDEX `%s` (%s)", $method, dbesc($indexname), $names);
339 function db_definition() {
343 $database["addon"] = array(
345 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
346 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
347 "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
348 "installed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
349 "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
350 "timestamp" => array("type" => "bigint(20)", "not null" => "1", "default" => "0"),
351 "plugin_admin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
354 "PRIMARY" => array("id"),
357 $database["attach"] = array(
359 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
360 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
361 "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
362 "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
363 "filetype" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
364 "filesize" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
365 "data" => array("type" => "longblob", "not null" => "1"),
366 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
367 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
368 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
369 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
370 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
371 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
374 "PRIMARY" => array("id"),
377 $database["auth_codes"] = array(
379 "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
380 "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
381 "redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
382 "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
383 "scope" => array("type" => "varchar(250)", "not null" => "1", "default" => ""),
386 "PRIMARY" => array("id"),
389 $database["cache"] = array(
391 "k" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
392 "v" => array("type" => "text", "not null" => "1"),
393 "expire_mode" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
394 "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
397 "PRIMARY" => array("k"),
398 "updated" => array("updated"),
401 $database["challenge"] = array(
403 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
404 "challenge" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
405 "dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
406 "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
407 "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
408 "last_update" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
411 "PRIMARY" => array("id"),
414 $database["clients"] = array(
416 "client_id" => array("type" => "varchar(20)", "not null" => "1", "primary" => "1"),
417 "pw" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
418 "redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
419 "name" => array("type" => "text"),
420 "icon" => array("type" => "text"),
421 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
424 "PRIMARY" => array("client_id"),
427 $database["config"] = array(
429 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
430 "cat" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
431 "k" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
432 "v" => array("type" => "text", "not null" => "1"),
435 "PRIMARY" => array("id"),
436 "cat_k" => array("cat(30)","k(30)"),
439 $database["contact"] = array(
441 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
442 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
443 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
444 "self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
445 "remote_self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
446 "rel" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
447 "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
448 "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
449 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
450 "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
451 "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
452 "about" => array("type" => "text", "not null" => "1"),
453 "keywords" => array("type" => "text", "not null" => "1"),
454 "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
455 "attag" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
456 "avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
457 "photo" => array("type" => "text", "not null" => "1"),
458 "thumb" => array("type" => "text", "not null" => "1"),
459 "micro" => array("type" => "text", "not null" => "1"),
460 "site-pubkey" => array("type" => "text", "not null" => "1"),
461 "issued-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
462 "dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
463 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
464 "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
465 "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
466 "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
467 "pubkey" => array("type" => "text", "not null" => "1"),
468 "prvkey" => array("type" => "text", "not null" => "1"),
469 "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
470 "request" => array("type" => "text", "not null" => "1"),
471 "notify" => array("type" => "text", "not null" => "1"),
472 "poll" => array("type" => "text", "not null" => "1"),
473 "confirm" => array("type" => "text", "not null" => "1"),
474 "poco" => array("type" => "text", "not null" => "1"),
475 "aes_allow" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
476 "ret-aes" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
477 "usehub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
478 "subhub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
479 "hub-verify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
480 "last-update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
481 "success_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
482 "failure_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
483 "name-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
484 "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
485 "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
486 "term-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
487 "last-item" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
488 "priority" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
489 "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
490 "readonly" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
491 "writable" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
492 "forum" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
493 "prv" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
494 "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
495 "archive" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
496 "pending" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
497 "rating" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
498 "reason" => array("type" => "text", "not null" => "1"),
499 "closeness" => array("type" => "tinyint(2)", "not null" => "1", "default" => "99"),
500 "info" => array("type" => "mediumtext", "not null" => "1"),
501 "profile-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
502 "bdyear" => array("type" => "varchar(4)", "not null" => "1", "default" => ""),
503 "bd" => array("type" => "date", "not null" => "1", "default" => "0000-00-00"),
504 "notify_new_posts" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
505 "fetch_further_information" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
506 "ffi_keyword_blacklist" => array("type" => "mediumtext", "not null" => "1"),
509 "PRIMARY" => array("id"),
510 "uid" => array("uid"),
511 "nurl" => array("nurl"),
514 $database["conv"] = array(
516 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
517 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
518 "recips" => array("type" => "mediumtext", "not null" => "1"),
519 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
520 "creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
521 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
522 "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
523 "subject" => array("type" => "mediumtext", "not null" => "1"),
526 "PRIMARY" => array("id"),
527 "uid" => array("uid"),
530 $database["deliverq"] = array(
532 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
533 "cmd" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
534 "item" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
535 "contact" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
538 "PRIMARY" => array("id"),
541 $database["event"] = array(
543 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
544 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
545 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
546 "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
547 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
548 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
549 "start" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
550 "finish" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
551 "summary" => array("type" => "text", "not null" => "1"),
552 "desc" => array("type" => "text", "not null" => "1"),
553 "location" => array("type" => "text", "not null" => "1"),
554 "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
555 "nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
556 "adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
557 "ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
558 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
559 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
560 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
561 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
564 "PRIMARY" => array("id"),
565 "uid" => array("uid"),
568 $database["fcontact"] = array(
570 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
571 "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
572 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
573 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
574 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
575 "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
576 "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
577 "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
578 "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
579 "notify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
580 "poll" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
581 "confirm" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
582 "priority" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
583 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
584 "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
585 "pubkey" => array("type" => "text", "not null" => "1"),
586 "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
589 "PRIMARY" => array("id"),
590 "addr" => array("addr"),
593 $database["ffinder"] = array(
595 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
596 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
597 "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
598 "fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
601 "PRIMARY" => array("id"),
604 $database["fserver"] = array(
606 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
607 "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
608 "posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
609 "key" => array("type" => "text", "not null" => "1"),
612 "PRIMARY" => array("id"),
613 "server" => array("server"),
616 $database["fsuggest"] = array(
618 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
619 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
620 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
621 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
622 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
623 "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
624 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
625 "note" => array("type" => "text", "not null" => "1"),
626 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
629 "PRIMARY" => array("id"),
632 $database["gcign"] = array(
634 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
635 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
636 "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
639 "PRIMARY" => array("id"),
640 "uid" => array("uid"),
641 "gcid" => array("gcid"),
644 $database["gcontact"] = array(
646 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
647 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
648 "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
649 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
650 "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
651 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
652 "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
653 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
654 "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
655 "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
656 "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
657 "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
658 "about" => array("type" => "text", "not null" => "1"),
659 "keywords" => array("type" => "text", "not null" => "1"),
660 "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
661 "birthday" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
662 "community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
663 "hide" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
664 "nsfw" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
665 "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
666 "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
667 "notify" => array("type" => "text", "not null" => "1"),
668 "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
669 "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
670 "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
673 "PRIMARY" => array("id"),
674 "nurl" => array("nurl"),
675 "name" => array("name"),
676 "nick" => array("nick"),
677 "addr" => array("addr"),
678 "updated" => array("updated"),
681 $database["glink"] = array(
683 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
684 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
685 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
686 "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
687 "zcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
688 "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
691 "PRIMARY" => array("id"),
692 "cid_uid_gcid_zcid" => array("cid","uid","gcid","zcid"),
693 "gcid" => array("gcid"),
694 "zcid" => array("zcid"),
697 $database["group"] = array(
699 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
700 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
701 "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
702 "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
703 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
706 "PRIMARY" => array("id"),
707 "uid" => array("uid"),
710 $database["group_member"] = array(
712 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
713 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
714 "gid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
715 "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
718 "PRIMARY" => array("id"),
719 "uid_gid_contactid" => array("uid","gid","contact-id"),
722 $database["gserver"] = array(
724 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
725 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
726 "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
727 "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
728 "site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
729 "info" => array("type" => "text", "not null" => "1"),
730 "register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
731 "poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
732 "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
733 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
734 "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
735 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
736 "last_poco_query" => 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"),
741 "PRIMARY" => array("id"),
742 "nurl" => array("nurl"),
745 $database["hook"] = array(
747 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
748 "hook" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
749 "file" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
750 "function" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
751 "priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
754 "PRIMARY" => array("id"),
755 "hook_file_function" => array("hook(30)","file(60)","function(30)"),
758 $database["intro"] = array(
760 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
761 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
762 "fid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
763 "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
764 "knowyou" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
765 "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
766 "note" => array("type" => "text", "not null" => "1"),
767 "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
768 "datetime" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
769 "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
770 "ignore" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
773 "PRIMARY" => array("id"),
776 $database["item"] = array(
778 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
779 "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
780 "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
781 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
782 "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
783 "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
784 "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
785 "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
786 "gravity" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
787 "parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
788 "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
789 "extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
790 "thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
791 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
792 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
793 "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
794 "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
795 "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
796 "owner-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
797 "owner-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
798 "owner-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
799 "owner-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
800 "author-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
801 "author-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
802 "author-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
803 "author-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
804 "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
805 "body" => array("type" => "mediumtext", "not null" => "1"),
806 "app" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
807 "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
808 "object-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
809 "object" => array("type" => "text", "not null" => "1"),
810 "target-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
811 "target" => array("type" => "text", "not null" => "1"),
812 "postopts" => array("type" => "text", "not null" => "1"),
813 "plink" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
814 "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
815 "event-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
816 "tag" => array("type" => "mediumtext", "not null" => "1"),
817 "attach" => array("type" => "mediumtext", "not null" => "1"),
818 "inform" => array("type" => "mediumtext", "not null" => "1"),
819 "file" => array("type" => "mediumtext", "not null" => "1"),
820 "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
821 "coord" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
822 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
823 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
824 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
825 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
826 "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
827 "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
828 "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
829 "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
830 "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
831 "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
832 "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
833 "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
834 "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
835 "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
836 "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
837 "last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"),
838 "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
839 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
840 "rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
841 "rendered-html" => array("type" => "mediumtext", "not null" => "1"),
842 "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
845 "PRIMARY" => array("id"),
846 "guid" => array("guid"),
847 "uri" => array("uri"),
848 "parent" => array("parent"),
849 "parent-uri" => array("parent-uri"),
850 "extid" => array("extid"),
851 "uid_id" => array("uid","id"),
852 "uid_created" => array("uid","created"),
853 "uid_unseen_contactid" => array("uid","unseen","contact-id"),
854 "uid_network_received" => array("uid","network","received"),
855 "uid_received" => array("uid","received"),
856 "uid_network_commented" => array("uid","network","commented"),
857 "uid_commented" => array("uid","commented"),
858 "uid_title" => array("uid","title"),
859 "uid_thrparent" => array("uid","thr-parent"),
860 "uid_parenturi" => array("uid","parent-uri"),
861 "uid_contactid_id" => array("uid","contact-id","id"),
862 "uid_contactid_created" => array("uid","contact-id","created"),
863 "gcontactid_uid_created" => array("gcontact-id","uid","created"),
864 "authorid_created" => array("author-id","created"),
865 "ownerid_created" => array("owner-id","created"),
866 "wall_body" => array("wall","body(6)"),
867 "uid_visible_moderated_created" => array("uid","visible","moderated","created"),
868 "uid_uri" => array("uid","uri"),
869 "uid_wall_created" => array("uid","wall","created"),
870 "resource-id" => array("resource-id"),
871 "uid_type" => array("uid","type"),
872 "uid_starred_id" => array("uid","starred", "id"),
873 "contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
874 "uid_wall_parent_created" => array("uid","wall","parent","created"),
875 "uid_type_changed" => array("uid","type","changed"),
876 "contactid_verb" => array("contact-id","verb"),
877 "deleted_changed" => array("deleted","changed"),
878 "uid_wall_changed" => array("uid","wall","changed"),
879 "uid_eventid" => array("uid","event-id"),
880 "uid_authorlink" => array("uid","author-link"),
881 "uid_ownerlink" => array("uid","owner-link"),
884 $database["item_id"] = array(
886 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
887 "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
888 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
889 "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
890 "service" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
893 "PRIMARY" => array("id"),
894 "uid" => array("uid"),
895 "sid" => array("sid"),
896 "service" => array("service"),
897 "iid" => array("iid"),
900 $database["locks"] = array(
902 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
903 "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
904 "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
905 "created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
908 "PRIMARY" => array("id"),
911 $database["mail"] = array(
913 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
914 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
915 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
916 "from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
917 "from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
918 "from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
919 "contact-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
920 "convid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
921 "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
922 "body" => array("type" => "mediumtext", "not null" => "1"),
923 "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
924 "reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
925 "replied" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
926 "unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
927 "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
928 "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
929 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
932 "PRIMARY" => array("id"),
933 "uid" => array("uid"),
934 "guid" => array("guid"),
935 "convid" => array("convid"),
936 "reply" => array("reply"),
937 "uri" => array("uri"),
938 "parent-uri" => array("parent-uri"),
941 $database["mailacct"] = array(
943 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
944 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
945 "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
946 "port" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
947 "ssltype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
948 "mailbox" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
949 "user" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
950 "pass" => array("type" => "text", "not null" => "1"),
951 "reply_to" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
952 "action" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
953 "movetofolder" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
954 "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
955 "last_check" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
958 "PRIMARY" => array("id"),
961 $database["manage"] = array(
963 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
964 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
965 "mid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
968 "PRIMARY" => array("id"),
969 "uid_mid" => array("uid","mid"),
972 $database["notify"] = array(
974 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
975 "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
976 "type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
977 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
978 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
979 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
980 "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
981 "msg" => array("type" => "mediumtext", "not null" => "1"),
982 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
983 "link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
984 "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
985 "parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
986 "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
987 "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
988 "otype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
991 "PRIMARY" => array("id"),
992 "uid" => array("uid"),
995 $database["notify-threads"] = array(
997 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
998 "notify-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
999 "master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1000 "parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1001 "receiver-uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1004 "PRIMARY" => array("id"),
1005 "master-parent-item" => array("master-parent-item"),
1006 "receiver-uid" => array("receiver-uid"),
1009 $database["oembed"] = array(
1011 "url" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
1012 "content" => array("type" => "text", "not null" => "1"),
1013 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1016 "PRIMARY" => array("url"),
1017 "created" => array("created"),
1020 $database["parsed_url"] = array(
1022 "url" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
1023 "guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1024 "oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1025 "content" => array("type" => "text", "not null" => "1"),
1026 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1029 "PRIMARY" => array("url", "guessing", "oembed"),
1030 "created" => array("created"),
1033 $database["pconfig"] = array(
1035 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1036 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1037 "cat" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1038 "k" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1039 "v" => array("type" => "mediumtext", "not null" => "1"),
1042 "PRIMARY" => array("id"),
1043 "uid_cat_k" => array("uid","cat(30)","k(30)"),
1046 $database["photo"] = array(
1048 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1049 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1050 "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1051 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1052 "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1053 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1054 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1055 "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1056 "desc" => array("type" => "text", "not null" => "1"),
1057 "album" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1058 "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1059 "type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
1060 "height" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1061 "width" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1062 "datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1063 "data" => array("type" => "mediumblob", "not null" => "1"),
1064 "scale" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
1065 "profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1066 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
1067 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
1068 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
1069 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
1072 "PRIMARY" => array("id"),
1073 "uid" => array("uid"),
1074 "resource-id" => array("resource-id"),
1075 "guid" => array("guid"),
1078 $database["poll"] = array(
1080 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1081 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1082 "q0" => array("type" => "mediumtext", "not null" => "1"),
1083 "q1" => array("type" => "mediumtext", "not null" => "1"),
1084 "q2" => array("type" => "mediumtext", "not null" => "1"),
1085 "q3" => array("type" => "mediumtext", "not null" => "1"),
1086 "q4" => array("type" => "mediumtext", "not null" => "1"),
1087 "q5" => array("type" => "mediumtext", "not null" => "1"),
1088 "q6" => array("type" => "mediumtext", "not null" => "1"),
1089 "q7" => array("type" => "mediumtext", "not null" => "1"),
1090 "q8" => array("type" => "mediumtext", "not null" => "1"),
1091 "q9" => array("type" => "mediumtext", "not null" => "1"),
1094 "PRIMARY" => array("id"),
1095 "uid" => array("uid"),
1098 $database["poll_result"] = array(
1100 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1101 "poll_id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1102 "choice" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1105 "PRIMARY" => array("id"),
1106 "poll_id" => array("poll_id"),
1107 "choice" => array("choice"),
1110 $database["profile"] = array(
1112 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1113 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1114 "profile-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1115 "is-default" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1116 "hide-friends" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1117 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1118 "pdesc" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1119 "dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
1120 "address" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1121 "locality" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1122 "region" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1123 "postal-code" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1124 "country-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1125 "hometown" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1126 "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1127 "marital" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1128 "with" => array("type" => "text", "not null" => "1"),
1129 "howlong" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1130 "sexual" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1131 "politic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1132 "religion" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1133 "pub_keywords" => array("type" => "text", "not null" => "1"),
1134 "prv_keywords" => array("type" => "text", "not null" => "1"),
1135 "likes" => array("type" => "text", "not null" => "1"),
1136 "dislikes" => array("type" => "text", "not null" => "1"),
1137 "about" => array("type" => "text", "not null" => "1"),
1138 "summary" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1139 "music" => array("type" => "text", "not null" => "1"),
1140 "book" => array("type" => "text", "not null" => "1"),
1141 "tv" => array("type" => "text", "not null" => "1"),
1142 "film" => array("type" => "text", "not null" => "1"),
1143 "interest" => array("type" => "text", "not null" => "1"),
1144 "romance" => array("type" => "text", "not null" => "1"),
1145 "work" => array("type" => "text", "not null" => "1"),
1146 "education" => array("type" => "text", "not null" => "1"),
1147 "contact" => array("type" => "text", "not null" => "1"),
1148 "homepage" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1149 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1150 "thumb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1151 "publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1152 "net-publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1155 "PRIMARY" => array("id"),
1156 "hometown" => array("hometown"),
1159 $database["profile_check"] = array(
1161 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1162 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1163 "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1164 "dfrn_id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1165 "sec" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1166 "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1169 "PRIMARY" => array("id"),
1172 $database["push_subscriber"] = array(
1174 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1175 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1176 "callback_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1177 "topic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1178 "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1179 "push" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1180 "last_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1181 "secret" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1184 "PRIMARY" => array("id"),
1187 $database["queue"] = array(
1189 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1190 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1191 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1192 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1193 "last" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1194 "content" => array("type" => "mediumtext", "not null" => "1"),
1195 "batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1198 "PRIMARY" => array("id"),
1199 "cid" => array("cid"),
1200 "created" => array("created"),
1201 "last" => array("last"),
1202 "network" => array("network"),
1203 "batch" => array("batch"),
1206 $database["register"] = array(
1208 "id" => array("type" => "int(11) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1209 "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1210 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1211 "uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1212 "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1213 "language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1216 "PRIMARY" => array("id"),
1219 $database["search"] = array(
1221 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1222 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1223 "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1226 "PRIMARY" => array("id"),
1227 "uid" => array("uid"),
1228 "term" => array("term"),
1231 $database["session"] = array(
1233 "id" => array("type" => "bigint(20) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1234 "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1235 "data" => array("type" => "text", "not null" => "1"),
1236 "expire" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1239 "PRIMARY" => array("id"),
1240 "sid" => array("sid"),
1241 "expire" => array("expire"),
1244 $database["sign"] = array(
1246 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1247 "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1248 "signed_text" => array("type" => "mediumtext", "not null" => "1"),
1249 "signature" => array("type" => "text", "not null" => "1"),
1250 "signer" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1253 "PRIMARY" => array("id"),
1254 "iid" => array("iid"),
1257 $database["spam"] = array(
1259 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1260 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1261 "spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1262 "ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1263 "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1264 "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1267 "PRIMARY" => array("id"),
1268 "uid" => array("uid"),
1269 "spam" => array("spam"),
1270 "ham" => array("ham"),
1271 "term" => array("term"),
1274 $database["term"] = array(
1276 "tid" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1277 "oid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1278 "otype" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1279 "type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1280 "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1281 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1282 "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1283 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1284 "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1285 "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1286 "aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1287 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1290 "PRIMARY" => array("tid"),
1291 "oid_otype_type_term" => array("oid","otype","type","term"),
1292 "uid_term_tid" => array("uid","term","tid"),
1293 "type_term" => array("type","term"),
1294 "uid_otype_type_term_global_created" => array("uid","otype","type","term","global","created"),
1295 "otype_type_term_tid" => array("otype","type","term","tid"),
1296 "guid" => array("guid"),
1299 $database["thread"] = array(
1301 "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1"),
1302 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1303 "contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1304 "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1305 "owner-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1306 "author-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1307 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1308 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1309 "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1310 "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1311 "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1312 "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1313 "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1314 "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1315 "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1316 "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1317 "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1318 "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1319 "ignored" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1320 "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1321 "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
1322 "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1323 "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1324 "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1325 "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1326 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1329 "PRIMARY" => array("iid"),
1330 "created" => array("created"),
1331 "commented" => array("commented"),
1332 "uid_network_commented" => array("uid","network","commented"),
1333 "uid_network_created" => array("uid","network","created"),
1334 "uid_contactid_commented" => array("uid","contact-id","commented"),
1335 "uid_contactid_created" => array("uid","contact-id","created"),
1336 "uid_gcontactid_commented" => array("uid","gcontact-id","commented"),
1337 "uid_gcontactid_created" => array("uid","gcontact-id","created"),
1338 "wall_private_received" => array("wall","private","received"),
1339 "uid_created" => array("uid","created"),
1340 "uid_commented" => array("uid","commented"),
1343 $database["tokens"] = array(
1345 "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
1346 "secret" => array("type" => "text", "not null" => "1"),
1347 "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
1348 "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1349 "scope" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
1350 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1353 "PRIMARY" => array("id"),
1356 $database["user"] = array(
1358 "uid" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1359 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1360 "username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1361 "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1362 "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1363 "email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1364 "openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1365 "timezone" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
1366 "language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
1367 "register_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1368 "login_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1369 "default-location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1370 "allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1371 "theme" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1372 "pubkey" => array("type" => "text", "not null" => "1"),
1373 "prvkey" => array("type" => "text", "not null" => "1"),
1374 "spubkey" => array("type" => "text", "not null" => "1"),
1375 "sprvkey" => array("type" => "text", "not null" => "1"),
1376 "verified" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1377 "blocked" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1378 "blockwall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1379 "hidewall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1380 "blocktags" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1381 "unkmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1382 "cntunkmail" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1383 "notify-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "65535"),
1384 "page-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1385 "prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1386 "pwdreset" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1387 "maxreq" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1388 "expire" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1389 "account_removed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1390 "account_expired" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1391 "account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1392 "expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1393 "service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1394 "def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1395 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
1396 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
1397 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
1398 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
1399 "openidserver" => array("type" => "text", "not null" => "1"),
1402 "PRIMARY" => array("uid"),
1403 "nickname" => array("nickname"),
1406 $database["userd"] = array(
1408 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1409 "username" => array("type" => "varchar(255)", "not null" => "1"),
1412 "PRIMARY" => array("id"),
1413 "username" => array("username"),
1416 $database["workerqueue"] = array(
1418 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1419 "parameter" => array("type" => "text", "not null" => "1"),
1420 "priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1421 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1422 "pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1423 "executed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1426 "PRIMARY" => array("id"),
1427 "created" => array("created"),
1436 * run from command line
1438 function dbstructure_run(&$argv, &$argc) {
1446 @include(".htconfig.php");
1447 require_once("include/dba.php");
1448 $db = new dba($db_host, $db_user, $db_pass, $db_data);
1449 unset($db_host, $db_user, $db_pass, $db_data);
1455 update_structure(true, true);
1458 print_structure(db_definition());
1465 echo $argv[0]." <command>\n";
1468 echo "update update database schema\n";
1469 echo "dumpsql dump database schema\n";
1477 if (array_search(__file__,get_included_files())===0){
1478 dbstructure_run($_SERVER["argv"],$_SERVER["argc"]);