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 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
572 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
573 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
574 "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
575 "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
576 "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
577 "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
578 "notify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
579 "poll" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
580 "confirm" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
581 "priority" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
582 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
583 "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
584 "pubkey" => array("type" => "text", "not null" => "1"),
585 "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
588 "PRIMARY" => array("id"),
589 "addr" => array("addr"),
592 $database["ffinder"] = array(
594 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
595 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
596 "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
597 "fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
600 "PRIMARY" => array("id"),
603 $database["fserver"] = array(
605 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
606 "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
607 "posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
608 "key" => array("type" => "text", "not null" => "1"),
611 "PRIMARY" => array("id"),
612 "server" => array("server"),
615 $database["fsuggest"] = array(
617 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
618 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
619 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
620 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
621 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
622 "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
623 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
624 "note" => array("type" => "text", "not null" => "1"),
625 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
628 "PRIMARY" => array("id"),
631 $database["gcign"] = array(
633 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
634 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
635 "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
638 "PRIMARY" => array("id"),
639 "uid" => array("uid"),
640 "gcid" => array("gcid"),
643 $database["gcontact"] = array(
645 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
646 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
647 "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
648 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
649 "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
650 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
651 "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
652 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
653 "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
654 "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
655 "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
656 "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
657 "about" => array("type" => "text", "not null" => "1"),
658 "keywords" => array("type" => "text", "not null" => "1"),
659 "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
660 "birthday" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
661 "community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
662 "hide" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
663 "nsfw" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
664 "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
665 "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
666 "notify" => array("type" => "text", "not null" => "1"),
667 "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
668 "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
669 "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
672 "PRIMARY" => array("id"),
673 "nurl" => array("nurl"),
674 "name" => array("name"),
675 "nick" => array("nick"),
676 "addr" => array("addr"),
677 "updated" => array("updated"),
680 $database["glink"] = array(
682 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
683 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
684 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
685 "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
686 "zcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
687 "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
690 "PRIMARY" => array("id"),
691 "cid_uid_gcid_zcid" => array("cid","uid","gcid","zcid"),
692 "gcid" => array("gcid"),
693 "zcid" => array("zcid"),
696 $database["group"] = array(
698 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
699 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
700 "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
701 "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
702 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
705 "PRIMARY" => array("id"),
706 "uid" => array("uid"),
709 $database["group_member"] = array(
711 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
712 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
713 "gid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
714 "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
717 "PRIMARY" => array("id"),
718 "uid_gid_contactid" => array("uid","gid","contact-id"),
721 $database["gserver"] = array(
723 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
724 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
725 "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
726 "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
727 "site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
728 "info" => array("type" => "text", "not null" => "1"),
729 "register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
730 "poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
731 "noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
732 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
733 "platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
734 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
735 "last_poco_query" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
736 "last_contact" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
737 "last_failure" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
740 "PRIMARY" => array("id"),
741 "nurl" => array("nurl"),
744 $database["hook"] = array(
746 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
747 "hook" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
748 "file" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
749 "function" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
750 "priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
753 "PRIMARY" => array("id"),
754 "hook_file_function" => array("hook(30)","file(60)","function(30)"),
757 $database["intro"] = array(
759 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
760 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
761 "fid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
762 "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
763 "knowyou" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
764 "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
765 "note" => array("type" => "text", "not null" => "1"),
766 "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
767 "datetime" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
768 "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
769 "ignore" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
772 "PRIMARY" => array("id"),
775 $database["item"] = array(
777 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
778 "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
779 "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
780 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
781 "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
782 "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
783 "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
784 "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
785 "gravity" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
786 "parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
787 "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
788 "extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
789 "thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
790 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
791 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
792 "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
793 "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
794 "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
795 "owner-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
796 "owner-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
797 "owner-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
798 "author-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
799 "author-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
800 "author-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
801 "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
802 "body" => array("type" => "mediumtext", "not null" => "1"),
803 "app" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
804 "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
805 "object-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
806 "object" => array("type" => "text", "not null" => "1"),
807 "target-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
808 "target" => array("type" => "text", "not null" => "1"),
809 "postopts" => array("type" => "text", "not null" => "1"),
810 "plink" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
811 "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
812 "event-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
813 "tag" => array("type" => "mediumtext", "not null" => "1"),
814 "attach" => array("type" => "mediumtext", "not null" => "1"),
815 "inform" => array("type" => "mediumtext", "not null" => "1"),
816 "file" => array("type" => "mediumtext", "not null" => "1"),
817 "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
818 "coord" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
819 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
820 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
821 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
822 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
823 "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
824 "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
825 "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
826 "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
827 "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
828 "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
829 "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
830 "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
831 "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
832 "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
833 "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
834 "last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"),
835 "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
836 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
837 "rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
838 "rendered-html" => array("type" => "mediumtext", "not null" => "1"),
839 "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
842 "PRIMARY" => array("id"),
843 "guid" => array("guid"),
844 "uri" => array("uri"),
845 "parent" => array("parent"),
846 "parent-uri" => array("parent-uri"),
847 "extid" => array("extid"),
848 "uid_id" => array("uid","id"),
849 "uid_created" => array("uid","created"),
850 "uid_unseen" => array("uid","unseen"),
851 "uid_network_received" => array("uid","network","received"),
852 "uid_received" => array("uid","received"),
853 "uid_network_commented" => array("uid","network","commented"),
854 "uid_commented" => array("uid","commented"),
855 "uid_title" => array("uid","title"),
856 "uid_thrparent" => array("uid","thr-parent"),
857 "uid_parenturi" => array("uid","parent-uri"),
858 "uid_contactid_created" => array("uid","contact-id","created"),
859 "gcontactid_uid_created" => array("gcontact-id","uid","created"),
860 "wall_body" => array("wall","body(6)"),
861 "uid_visible_moderated_created" => array("uid","visible","moderated","created"),
862 "uid_uri" => array("uid","uri"),
863 "uid_wall_created" => array("uid","wall","created"),
864 "resource-id" => array("resource-id"),
865 "uid_type" => array("uid","type"),
866 "uid_starred" => array("uid","starred"),
867 "contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
868 "uid_wall_parent_created" => array("uid","wall","parent","created"),
869 "uid_type_changed" => array("uid","type","changed"),
870 "contactid_verb" => array("contact-id","verb"),
871 "deleted_changed" => array("deleted","changed"),
872 "uid_wall_changed" => array("uid","wall","changed"),
873 "uid_eventid" => array("uid","event-id"),
874 "uid_authorlink" => array("uid","author-link"),
875 "uid_ownerlink" => array("uid","owner-link"),
878 $database["item_id"] = array(
880 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
881 "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
882 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
883 "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
884 "service" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
887 "PRIMARY" => array("id"),
888 "uid" => array("uid"),
889 "sid" => array("sid"),
890 "service" => array("service"),
891 "iid" => array("iid"),
894 $database["locks"] = array(
896 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
897 "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
898 "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
899 "created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
902 "PRIMARY" => array("id"),
905 $database["mail"] = array(
907 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
908 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
909 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
910 "from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
911 "from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
912 "from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
913 "contact-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
914 "convid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
915 "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
916 "body" => array("type" => "mediumtext", "not null" => "1"),
917 "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
918 "reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
919 "replied" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
920 "unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
921 "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
922 "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
923 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
926 "PRIMARY" => array("id"),
927 "uid" => array("uid"),
928 "guid" => array("guid"),
929 "convid" => array("convid"),
930 "reply" => array("reply"),
931 "uri" => array("uri"),
932 "parent-uri" => array("parent-uri"),
935 $database["mailacct"] = array(
937 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
938 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
939 "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
940 "port" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
941 "ssltype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
942 "mailbox" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
943 "user" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
944 "pass" => array("type" => "text", "not null" => "1"),
945 "reply_to" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
946 "action" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
947 "movetofolder" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
948 "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
949 "last_check" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
952 "PRIMARY" => array("id"),
955 $database["manage"] = array(
957 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
958 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
959 "mid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
962 "PRIMARY" => array("id"),
963 "uid_mid" => array("uid","mid"),
966 $database["notify"] = array(
968 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
969 "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
970 "type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
971 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
972 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
973 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
974 "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
975 "msg" => array("type" => "mediumtext", "not null" => "1"),
976 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
977 "link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
978 "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
979 "parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
980 "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
981 "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
982 "otype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
985 "PRIMARY" => array("id"),
986 "uid" => array("uid"),
989 $database["notify-threads"] = array(
991 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
992 "notify-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
993 "master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
994 "parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
995 "receiver-uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
998 "PRIMARY" => array("id"),
999 "master-parent-item" => array("master-parent-item"),
1000 "receiver-uid" => array("receiver-uid"),
1003 $database["oembed"] = array(
1005 "url" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
1006 "content" => array("type" => "text", "not null" => "1"),
1007 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1010 "PRIMARY" => array("url"),
1011 "created" => array("created"),
1014 $database["parsed_url"] = array(
1016 "url" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
1017 "guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1018 "oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
1019 "content" => array("type" => "text", "not null" => "1"),
1020 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1023 "PRIMARY" => array("url", "guessing", "oembed"),
1024 "created" => array("created"),
1027 $database["pconfig"] = array(
1029 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1030 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1031 "cat" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1032 "k" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1033 "v" => array("type" => "mediumtext", "not null" => "1"),
1036 "PRIMARY" => array("id"),
1037 "uid_cat_k" => array("uid","cat(30)","k(30)"),
1040 $database["photo"] = array(
1042 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1043 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1044 "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1045 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1046 "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1047 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1048 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1049 "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1050 "desc" => array("type" => "text", "not null" => "1"),
1051 "album" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1052 "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1053 "type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
1054 "height" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1055 "width" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
1056 "datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1057 "data" => array("type" => "mediumblob", "not null" => "1"),
1058 "scale" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
1059 "profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1060 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
1061 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
1062 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
1063 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
1066 "PRIMARY" => array("id"),
1067 "uid" => array("uid"),
1068 "resource-id" => array("resource-id"),
1069 "guid" => array("guid"),
1072 $database["poll"] = array(
1074 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1075 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1076 "q0" => array("type" => "mediumtext", "not null" => "1"),
1077 "q1" => array("type" => "mediumtext", "not null" => "1"),
1078 "q2" => array("type" => "mediumtext", "not null" => "1"),
1079 "q3" => array("type" => "mediumtext", "not null" => "1"),
1080 "q4" => array("type" => "mediumtext", "not null" => "1"),
1081 "q5" => array("type" => "mediumtext", "not null" => "1"),
1082 "q6" => array("type" => "mediumtext", "not null" => "1"),
1083 "q7" => array("type" => "mediumtext", "not null" => "1"),
1084 "q8" => array("type" => "mediumtext", "not null" => "1"),
1085 "q9" => array("type" => "mediumtext", "not null" => "1"),
1088 "PRIMARY" => array("id"),
1089 "uid" => array("uid"),
1092 $database["poll_result"] = array(
1094 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1095 "poll_id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1096 "choice" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1099 "PRIMARY" => array("id"),
1100 "poll_id" => array("poll_id"),
1101 "choice" => array("choice"),
1104 $database["profile"] = array(
1106 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1107 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1108 "profile-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1109 "is-default" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1110 "hide-friends" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1111 "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1112 "pdesc" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1113 "dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
1114 "address" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1115 "locality" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1116 "region" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1117 "postal-code" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1118 "country-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1119 "hometown" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1120 "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1121 "marital" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1122 "with" => array("type" => "text", "not null" => "1"),
1123 "howlong" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1124 "sexual" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1125 "politic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1126 "religion" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1127 "pub_keywords" => array("type" => "text", "not null" => "1"),
1128 "prv_keywords" => array("type" => "text", "not null" => "1"),
1129 "likes" => array("type" => "text", "not null" => "1"),
1130 "dislikes" => array("type" => "text", "not null" => "1"),
1131 "about" => array("type" => "text", "not null" => "1"),
1132 "summary" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1133 "music" => array("type" => "text", "not null" => "1"),
1134 "book" => array("type" => "text", "not null" => "1"),
1135 "tv" => array("type" => "text", "not null" => "1"),
1136 "film" => array("type" => "text", "not null" => "1"),
1137 "interest" => array("type" => "text", "not null" => "1"),
1138 "romance" => array("type" => "text", "not null" => "1"),
1139 "work" => array("type" => "text", "not null" => "1"),
1140 "education" => array("type" => "text", "not null" => "1"),
1141 "contact" => array("type" => "text", "not null" => "1"),
1142 "homepage" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1143 "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1144 "thumb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1145 "publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1146 "net-publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1149 "PRIMARY" => array("id"),
1150 "hometown" => array("hometown"),
1153 $database["profile_check"] = array(
1155 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1156 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1157 "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1158 "dfrn_id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1159 "sec" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1160 "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1163 "PRIMARY" => array("id"),
1166 $database["push_subscriber"] = array(
1168 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1169 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1170 "callback_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1171 "topic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1172 "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1173 "push" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1174 "last_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1175 "secret" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1178 "PRIMARY" => array("id"),
1181 $database["queue"] = array(
1183 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1184 "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1185 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1186 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1187 "last" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1188 "content" => array("type" => "mediumtext", "not null" => "1"),
1189 "batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1192 "PRIMARY" => array("id"),
1193 "cid" => array("cid"),
1194 "created" => array("created"),
1195 "last" => array("last"),
1196 "network" => array("network"),
1197 "batch" => array("batch"),
1200 $database["register"] = array(
1202 "id" => array("type" => "int(11) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1203 "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1204 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1205 "uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1206 "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1207 "language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1210 "PRIMARY" => array("id"),
1213 $database["search"] = array(
1215 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1216 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1217 "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1220 "PRIMARY" => array("id"),
1221 "uid" => array("uid"),
1222 "term" => array("term"),
1225 $database["session"] = array(
1227 "id" => array("type" => "bigint(20) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1228 "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1229 "data" => array("type" => "text", "not null" => "1"),
1230 "expire" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1233 "PRIMARY" => array("id"),
1234 "sid" => array("sid"),
1235 "expire" => array("expire"),
1238 $database["sign"] = array(
1240 "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1241 "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1242 "signed_text" => array("type" => "mediumtext", "not null" => "1"),
1243 "signature" => array("type" => "text", "not null" => "1"),
1244 "signer" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1247 "PRIMARY" => array("id"),
1248 "iid" => array("iid"),
1251 $database["spam"] = array(
1253 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1254 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1255 "spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1256 "ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1257 "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1258 "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1261 "PRIMARY" => array("id"),
1262 "uid" => array("uid"),
1263 "spam" => array("spam"),
1264 "ham" => array("ham"),
1265 "term" => array("term"),
1268 $database["term"] = array(
1270 "tid" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1271 "oid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1272 "otype" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1273 "type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1274 "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1275 "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1276 "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1277 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1278 "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1279 "global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1280 "aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1281 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1284 "PRIMARY" => array("tid"),
1285 "oid_otype_type_term" => array("oid","otype","type","term"),
1286 "uid_term_tid" => array("uid","term","tid"),
1287 "type_term" => array("type","term"),
1288 "uid_otype_type_term_global_created" => array("uid","otype","type","term","global","created"),
1289 "otype_type_term_tid" => array("otype","type","term","tid"),
1290 "guid" => array("guid"),
1293 $database["thread"] = array(
1295 "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1"),
1296 "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1297 "contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1298 "gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1299 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1300 "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1301 "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1302 "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1303 "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1304 "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1305 "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1306 "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1307 "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1308 "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1309 "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1310 "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1311 "ignored" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1312 "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1313 "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
1314 "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1315 "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1316 "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1317 "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1318 "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1321 "PRIMARY" => array("iid"),
1322 "created" => array("created"),
1323 "commented" => array("commented"),
1324 "uid_network_commented" => array("uid","network","commented"),
1325 "uid_network_created" => array("uid","network","created"),
1326 "uid_contactid_commented" => array("uid","contact-id","commented"),
1327 "uid_contactid_created" => array("uid","contact-id","created"),
1328 "uid_gcontactid_commented" => array("uid","gcontact-id","commented"),
1329 "uid_gcontactid_created" => array("uid","gcontact-id","created"),
1330 "wall_private_received" => array("wall","private","received"),
1331 "uid_created" => array("uid","created"),
1332 "uid_commented" => array("uid","commented"),
1335 $database["tokens"] = array(
1337 "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
1338 "secret" => array("type" => "text", "not null" => "1"),
1339 "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
1340 "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1341 "scope" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
1342 "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1345 "PRIMARY" => array("id"),
1348 $database["user"] = array(
1350 "uid" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1351 "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1352 "username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1353 "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1354 "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1355 "email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1356 "openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1357 "timezone" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
1358 "language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
1359 "register_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1360 "login_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1361 "default-location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1362 "allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1363 "theme" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1364 "pubkey" => array("type" => "text", "not null" => "1"),
1365 "prvkey" => array("type" => "text", "not null" => "1"),
1366 "spubkey" => array("type" => "text", "not null" => "1"),
1367 "sprvkey" => array("type" => "text", "not null" => "1"),
1368 "verified" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1369 "blocked" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1370 "blockwall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1371 "hidewall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1372 "blocktags" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1373 "unkmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1374 "cntunkmail" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1375 "notify-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "65535"),
1376 "page-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1377 "prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1378 "pwdreset" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1379 "maxreq" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1380 "expire" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1381 "account_removed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1382 "account_expired" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1383 "account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1384 "expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1385 "service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1386 "def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1387 "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
1388 "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
1389 "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
1390 "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
1391 "openidserver" => array("type" => "text", "not null" => "1"),
1394 "PRIMARY" => array("uid"),
1395 "nickname" => array("nickname"),
1398 $database["userd"] = array(
1400 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1401 "username" => array("type" => "varchar(255)", "not null" => "1"),
1404 "PRIMARY" => array("id"),
1405 "username" => array("username"),
1408 $database["workerqueue"] = array(
1410 "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1411 "parameter" => array("type" => "text", "not null" => "1"),
1412 "priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1413 "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1414 "pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1415 "executed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1418 "PRIMARY" => array("id"),
1419 "created" => array("created"),
1428 * run from command line
1430 function dbstructure_run(&$argv, &$argc) {
1438 @include(".htconfig.php");
1439 require_once("include/dba.php");
1440 $db = new dba($db_host, $db_user, $db_pass, $db_data);
1441 unset($db_host, $db_user, $db_pass, $db_data);
1447 update_structure(true, true);
1450 print_structure(db_definition());
1457 echo $argv[0]." <command>\n";
1460 echo "update update database schema\n";
1461 echo "dumpsql dump database schema\n";
1469 if (array_search(__file__,get_included_files())===0){
1470 dbstructure_run($_SERVER["argv"],$_SERVER["argc"]);