]> git.mxchange.org Git - friendica.git/blob - include/dbstructure.php
Support for keywords and gender in (global) contacts.
[friendica.git] / include / dbstructure.php
1 <?php
2 require_once("boot.php");
3 require_once("include/text.php");
4
5 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
6
7 /*
8  * send the email and do what is needed to do on update fails
9  *
10  * @param update_id             (int) number of failed update
11  * @param error_message (str) error message
12  */
13 function update_fail($update_id, $error_message){
14         //send the administrators an e-mail
15         $admin_mail_list = "'".implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email']))))."'";
16         $adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
17                 $admin_mail_list
18         );
19
20         // every admin could had different language
21
22         foreach ($adminlist as $admin) {
23                 $lang = (($admin['language'])?$admin['language']:'en');
24                 push_lang($lang);
25
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);
34
35                 notification(array(
36                         'type' => "SYSTEM_EMAIL",
37                         'to_email' => $admin['email'],
38                         'preamble' => $preamble,
39                         'body' => $body,
40                         'language' => $lang,
41                 ));
42         }
43
44
45
46
47         /*
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)
54         ));
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');
62         */
63         //try the logger
64         logger("CRITICAL: Database structure update failed: ".$retval);
65         break;
66 }
67
68
69 function table_structure($table) {
70         $structures = q("DESCRIBE `%s`", $table);
71
72         $indexes = q("SHOW INDEX FROM `%s`", $table);
73
74         $fielddata = array();
75         $indexdata = array();
76
77         if (is_array($indexes))
78                 foreach ($indexes AS $index) {
79                         if ($index["Index_type"] == "FULLTEXT")
80                                 continue;
81
82                         $column = $index["Column_name"];
83                         if ($index["Sub_part"] != "")
84                                 $column .= "(".$index["Sub_part"].")";
85
86                         $indexdata[$index["Key_name"]][] = $column;
87                 }
88
89         if (is_array($structures)) {
90                 foreach($structures AS $field) {
91                         $fielddata[$field["Field"]]["type"] = $field["Type"];
92                         if ($field["Null"] == "NO")
93                                 $fielddata[$field["Field"]]["not null"] = true;
94
95                         if (isset($field["Default"]))
96                                 $fielddata[$field["Field"]]["default"] = $field["Default"];
97
98                         if ($field["Extra"] != "")
99                                 $fielddata[$field["Field"]]["extra"] = $field["Extra"];
100
101                         if ($field["Key"] == "PRI")
102                                 $fielddata[$field["Field"]]["primary"] = true;
103                 }
104         }
105         return(array("fields"=>$fielddata, "indexes"=>$indexdata));
106 }
107
108 function print_structure($database) {
109         foreach ($database AS $name => $structure) {
110                 echo "\t".'$database["'.$name."\"] = array(\n";
111
112                 echo "\t\t\t".'"fields" => array('."\n";
113                 foreach ($structure["fields"] AS $fieldname => $parameters) {
114                         echo "\t\t\t\t\t".'"'.$fieldname.'" => array(';
115
116                         $data = "";
117                         foreach ($parameters AS $name => $value) {
118                                 if ($data != "")
119                                         $data .= ", ";
120                                 $data .= '"'.$name.'" => "'.$value.'"';
121                         }
122
123                         echo $data."),\n";
124                 }
125                 echo "\t\t\t\t\t),\n";
126                 echo "\t\t\t".'"indexes" => array('."\n";
127                 foreach ($structure["indexes"] AS $indexname => $fieldnames) {
128                         echo "\t\t\t\t\t".'"'.$indexname.'" => array("'.implode($fieldnames, '","').'"'."),\n";
129                 }
130                 echo "\t\t\t\t\t)\n";
131                 echo "\t\t\t);\n";
132         }
133 }
134
135 function update_structure($verbose, $action) {
136         global $a, $db;
137
138         $errors = false;
139
140         logger('updating structure', LOGGER_DEBUG);
141
142         // Get the current structure
143         $database = array();
144
145         $tables = q("show tables");
146
147         foreach ($tables AS $table) {
148                 $table = current($table);
149
150                 $database[$table] = table_structure($table);
151         }
152
153         // Get the definition
154         $definition = db_definition();
155
156         // Compare it
157         foreach ($definition AS $name => $structure) {
158                 $sql3="";
159                 if (!isset($database[$name])) {
160                         $r = db_create_table($name, $structure["fields"], $verbose, $action);
161                         if(false === $r)
162                                 $errors .=  t('Errors encountered creating database tables.').$name.EOL;
163                 } else {
164                         // Drop the index if it isn't present in the definition
165                         foreach ($database[$name]["indexes"] AS $indexname => $fieldnames)
166                                 if (!isset($structure["indexes"][$indexname])) {
167                                         $sql2=db_drop_index($indexname);
168                                         if ($sql3 == "")
169                                                 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
170                                         else
171                                                 $sql3 .= ", ".$sql2;
172                                 }
173
174                         // Compare the field structure field by field
175                         foreach ($structure["fields"] AS $fieldname => $parameters) {
176                                 if (!isset($database[$name]["fields"][$fieldname])) {
177                                         $sql2=db_add_table_field($fieldname, $parameters);
178                                         if ($sql3 == "")
179                                                 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
180                                         else
181                                                 $sql3 .= ", ".$sql2;
182                                 } else {
183                                         // Compare the field definition
184                                         $current_field_definition = implode(",",$database[$name]["fields"][$fieldname]);
185                                         $new_field_definition = implode(",",$parameters);
186                                         if ($current_field_definition != $new_field_definition) {
187                                                 $sql2=db_modify_table_field($fieldname, $parameters);
188                                                 if ($sql3 == "")
189                                                         $sql3 = "ALTER TABLE `".$name."` ".$sql2;
190                                                 else
191                                                         $sql3 .= ", ".$sql2;
192                                         }
193
194                                 }
195                         }
196                 }
197
198                 // Create the index
199                 foreach ($structure["indexes"] AS $indexname => $fieldnames) {
200                         if (!isset($database[$name]["indexes"][$indexname])) {
201                                 $sql2=db_create_index($indexname, $fieldnames);
202                                 if ($sql2 != "") {
203                                         if ($sql3 == "")
204                                                 $sql3 = "ALTER TABLE `".$name."` ".$sql2;
205                                         else
206                                                 $sql3 .= ", ".$sql2;
207                                 }
208                         }
209                 }
210
211                 if ($sql3 != "") {
212                         $sql3 .= ";";
213
214                         if ($verbose)
215                                 echo $sql3."\n";
216
217                         if ($action) {
218                                 $r = @$db->q($sql3);
219                                 if(false === $r)
220                                         $errors .= t('Errors encountered performing database changes.').$sql3.EOL;
221                         }
222                 }
223         }
224
225         return $errors;
226 }
227
228 function db_field_command($parameters, $create = true) {
229         $fieldstruct = $parameters["type"];
230
231         if ($parameters["not null"])
232                 $fieldstruct .= " NOT NULL";
233
234         if (isset($parameters["default"]))
235                 $fieldstruct .= " DEFAULT '".$parameters["default"]."'";
236
237         if ($parameters["extra"] != "")
238                 $fieldstruct .= " ".$parameters["extra"];
239
240         if (($parameters["primary"] != "") AND $create)
241                 $fieldstruct .= " PRIMARY KEY";
242
243         return($fieldstruct);
244 }
245
246 function db_create_table($name, $fields, $verbose, $action) {
247         global $a, $db;
248
249         $r = true;
250
251         $sql = "";
252         foreach($fields AS $fieldname => $field) {
253                 if ($sql != "")
254                         $sql .= ",\n";
255
256                 $sql .= "`".dbesc($fieldname)."` ".db_field_command($field);
257         }
258
259         $sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n", dbesc($name)).$sql."\n) DEFAULT CHARSET=utf8";
260
261         if ($verbose)
262                 echo $sql.";\n";
263
264         if ($action)
265                 $r = @$db->q($sql);
266
267         return $r;
268 }
269
270 function db_add_table_field($fieldname, $parameters) {
271         $sql = sprintf("ADD `%s` %s", dbesc($fieldname), db_field_command($parameters));
272         return($sql);
273 }
274
275 function db_modify_table_field($fieldname, $parameters) {
276         $sql = sprintf("MODIFY `%s` %s", dbesc($fieldname), db_field_command($parameters, false));
277         return($sql);
278 }
279
280 function db_drop_index($indexname) {
281         $sql = sprintf("DROP INDEX `%s`", dbesc($indexname));
282         return($sql);
283 }
284
285 function db_create_index($indexname, $fieldnames) {
286
287         if ($indexname == "PRIMARY")
288                 return;
289
290         $names = "";
291         foreach ($fieldnames AS $fieldname) {
292                 if ($names != "")
293                         $names .= ",";
294
295                 if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches))
296                         $names .= "`".dbesc($matches[1])."`(".intval($matches[2]).")";
297                 else
298                         $names .= "`".dbesc($fieldname)."`";
299         }
300
301         $sql = sprintf("ADD INDEX `%s` (%s)", dbesc($indexname), $names);
302         return($sql);
303 }
304
305 function db_definition() {
306
307         $database = array();
308
309         $database["addon"] = array(
310                         "fields" => array(
311                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
312                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
313                                         "version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
314                                         "installed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
315                                         "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
316                                         "timestamp" => array("type" => "bigint(20)", "not null" => "1", "default" => "0"),
317                                         "plugin_admin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
318                                         ),
319                         "indexes" => array(
320                                         "PRIMARY" => array("id"),
321                                         )
322                         );
323         $database["attach"] = array(
324                         "fields" => array(
325                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
326                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
327                                         "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
328                                         "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
329                                         "filetype" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
330                                         "filesize" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
331                                         "data" => array("type" => "longblob", "not null" => "1"),
332                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
333                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
334                                         "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
335                                         "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
336                                         "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
337                                         "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
338                                         ),
339                         "indexes" => array(
340                                         "PRIMARY" => array("id"),
341                                         )
342                         );
343         $database["auth_codes"] = array(
344                         "fields" => array(
345                                         "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
346                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
347                                         "redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
348                                         "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
349                                         "scope" => array("type" => "varchar(250)", "not null" => "1", "default" => ""),
350                                         ),
351                         "indexes" => array(
352                                         "PRIMARY" => array("id"),
353                                         )
354                         );
355         $database["cache"] = array(
356                         "fields" => array(
357                                         "k" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
358                                         "v" => array("type" => "text", "not null" => "1"),
359                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
360                                         ),
361                         "indexes" => array(
362                                         "PRIMARY" => array("k"),
363                                         "updated" => array("updated"),
364                                         )
365                         );
366         $database["challenge"] = array(
367                         "fields" => array(
368                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
369                                         "challenge" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
370                                         "dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
371                                         "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
372                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
373                                         "last_update" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
374                                         ),
375                         "indexes" => array(
376                                         "PRIMARY" => array("id"),
377                                         )
378                         );
379         $database["clients"] = array(
380                         "fields" => array(
381                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "primary" => "1"),
382                                         "pw" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
383                                         "redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
384                                         "name" => array("type" => "text"),
385                                         "icon" => array("type" => "text"),
386                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
387                                         ),
388                         "indexes" => array(
389                                         "PRIMARY" => array("client_id"),
390                                         )
391                         );
392         $database["config"] = array(
393                         "fields" => array(
394                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
395                                         "cat" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
396                                         "k" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
397                                         "v" => array("type" => "text", "not null" => "1"),
398                                         ),
399                         "indexes" => array(
400                                         "PRIMARY" => array("id"),
401                                         "cat_k" => array("cat(30)","k(30)"),
402                                         )
403                         );
404         $database["contact"] = array(
405                         "fields" => array(
406                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
407                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
408                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
409                                         "self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
410                                         "remote_self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
411                                         "rel" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
412                                         "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
413                                         "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
414                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
415                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
416                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
417                                         "about" => array("type" => "text", "not null" => "1"),
418                                         "keywords" => array("type" => "text", "not null" => "1"),
419                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
420                                         "attag" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
421                                         "photo" => array("type" => "text", "not null" => "1"),
422                                         "thumb" => array("type" => "text", "not null" => "1"),
423                                         "micro" => array("type" => "text", "not null" => "1"),
424                                         "site-pubkey" => array("type" => "text", "not null" => "1"),
425                                         "issued-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
426                                         "dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
427                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
428                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
429                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
430                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
431                                         "pubkey" => array("type" => "text", "not null" => "1"),
432                                         "prvkey" => array("type" => "text", "not null" => "1"),
433                                         "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
434                                         "request" => array("type" => "text", "not null" => "1"),
435                                         "notify" => array("type" => "text", "not null" => "1"),
436                                         "poll" => array("type" => "text", "not null" => "1"),
437                                         "confirm" => array("type" => "text", "not null" => "1"),
438                                         "poco" => array("type" => "text", "not null" => "1"),
439                                         "aes_allow" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
440                                         "ret-aes" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
441                                         "usehub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
442                                         "subhub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
443                                         "hub-verify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
444                                         "last-update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
445                                         "success_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
446                                         "name-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
447                                         "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
448                                         "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
449                                         "term-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
450                                         "priority" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
451                                         "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
452                                         "readonly" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
453                                         "writable" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
454                                         "forum" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
455                                         "prv" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
456                                         "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
457                                         "archive" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
458                                         "pending" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
459                                         "rating" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
460                                         "reason" => array("type" => "text", "not null" => "1"),
461                                         "closeness" => array("type" => "tinyint(2)", "not null" => "1", "default" => "99"),
462                                         "info" => array("type" => "mediumtext", "not null" => "1"),
463                                         "profile-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
464                                         "bdyear" => array("type" => "varchar(4)", "not null" => "1", "default" => ""),
465                                         "bd" => array("type" => "date", "not null" => "1", "default" => "0000-00-00"),
466                                         "notify_new_posts" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
467                                         "fetch_further_information" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
468                                         "ffi_keyword_blacklist" => array("type" => "mediumtext", "not null" => "1"),
469                                         ),
470                         "indexes" => array(
471                                         "PRIMARY" => array("id"),
472                                         "uid" => array("uid"),
473                                         )
474                         );
475         $database["conv"] = array(
476                         "fields" => array(
477                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
478                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
479                                         "recips" => array("type" => "mediumtext", "not null" => "1"),
480                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
481                                         "creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
482                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
483                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
484                                         "subject" => array("type" => "mediumtext", "not null" => "1"),
485                                         ),
486                         "indexes" => array(
487                                         "PRIMARY" => array("id"),
488                                         "uid" => array("uid"),
489                                         )
490                         );
491         $database["deliverq"] = array(
492                         "fields" => array(
493                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
494                                         "cmd" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
495                                         "item" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
496                                         "contact" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
497                                         ),
498                         "indexes" => array(
499                                         "PRIMARY" => array("id"),
500                                         )
501                         );
502         $database["dsprphotoq"] = array(
503                         "fields" => array(
504                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
505                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
506                                         "msg" => array("type" => "mediumtext", "not null" => "1"),
507                                         "attempt" => array("type" => "tinyint(4)", "not null" => "1", "default" => "0"),
508                                         ),
509                         "indexes" => array(
510                                         "PRIMARY" => array("id"),
511                                         )
512                         );
513         $database["event"] = array(
514                         "fields" => array(
515                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
516                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
517                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
518                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
519                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
520                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
521                                         "start" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
522                                         "finish" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
523                                         "summary" => array("type" => "text", "not null" => "1"),
524                                         "desc" => array("type" => "text", "not null" => "1"),
525                                         "location" => array("type" => "text", "not null" => "1"),
526                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
527                                         "nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
528                                         "adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
529                                         "ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
530                                         "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
531                                         "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
532                                         "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
533                                         "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
534                                         ),
535                         "indexes" => array(
536                                         "PRIMARY" => array("id"),
537                                         "uid" => array("uid"),
538                                         )
539                         );
540         $database["fcontact"] = array(
541                         "fields" => array(
542                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
543                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
544                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
545                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
546                                         "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
547                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
548                                         "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
549                                         "batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
550                                         "notify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
551                                         "poll" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
552                                         "confirm" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
553                                         "priority" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
554                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
555                                         "alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
556                                         "pubkey" => array("type" => "text", "not null" => "1"),
557                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
558                                         ),
559                         "indexes" => array(
560                                         "PRIMARY" => array("id"),
561                                         "addr" => array("addr"),
562                                         )
563                         );
564         $database["ffinder"] = array(
565                         "fields" => array(
566                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
567                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
568                                         "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
569                                         "fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
570                                         ),
571                         "indexes" => array(
572                                         "PRIMARY" => array("id"),
573                                         )
574                         );
575         $database["fserver"] = array(
576                         "fields" => array(
577                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
578                                         "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
579                                         "posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
580                                         "key" => array("type" => "text", "not null" => "1"),
581                                         ),
582                         "indexes" => array(
583                                         "PRIMARY" => array("id"),
584                                         "server" => array("server"),
585                                         )
586                         );
587         $database["fsuggest"] = array(
588                         "fields" => array(
589                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
590                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
591                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
592                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
593                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
594                                         "request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
595                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
596                                         "note" => array("type" => "text", "not null" => "1"),
597                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
598                                         ),
599                         "indexes" => array(
600                                         "PRIMARY" => array("id"),
601                                         )
602                         );
603         $database["gcign"] = array(
604                         "fields" => array(
605                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
606                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
607                                         "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
608                                         ),
609                         "indexes" => array(
610                                         "PRIMARY" => array("id"),
611                                         "uid" => array("uid"),
612                                         "gcid" => array("gcid"),
613                                         )
614                         );
615         $database["gcontact"] = array(
616                         "fields" => array(
617                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
618                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
619                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
620                                         "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
621                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
622                                         "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
623                                         "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
624                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
625                                         "about" => array("type" => "text", "not null" => "1"),
626                                         "keywords" => array("type" => "text", "not null" => "1"),
627                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
628                                         "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
629                                         ),
630                         "indexes" => array(
631                                         "PRIMARY" => array("id"),
632                                         "nurl" => array("nurl"),
633                                         )
634                         );
635         $database["glink"] = array(
636                         "fields" => array(
637                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
638                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
639                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
640                                         "gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
641                                         "zcid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
642                                         "updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
643                                         ),
644                         "indexes" => array(
645                                         "PRIMARY" => array("id"),
646                                         "cid_uid_gcid_zcid" => array("cid","uid","gcid","zcid"),
647                                         "gcid" => array("gcid"),
648                                         "zcid" => array("zcid"),
649                                         )
650                         );
651         $database["group"] = array(
652                         "fields" => array(
653                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
654                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
655                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
656                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
657                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
658                                         ),
659                         "indexes" => array(
660                                         "PRIMARY" => array("id"),
661                                         "uid" => array("uid"),
662                                         )
663                         );
664         $database["group_member"] = array(
665                         "fields" => array(
666                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
667                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
668                                         "gid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
669                                         "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
670                                         ),
671                         "indexes" => array(
672                                         "PRIMARY" => array("id"),
673                                         "uid_gid_contactid" => array("uid","gid","contact-id"),
674                                         )
675                         );
676         $database["guid"] = array(
677                         "fields" => array(
678                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
679                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
680                                         ),
681                         "indexes" => array(
682                                         "PRIMARY" => array("id"),
683                                         "guid" => array("guid"),
684                                         )
685                         );
686         $database["hook"] = array(
687                         "fields" => array(
688                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
689                                         "hook" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
690                                         "file" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
691                                         "function" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
692                                         "priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
693                                         ),
694                         "indexes" => array(
695                                         "PRIMARY" => array("id"),
696                                         "hook_file_function" => array("hook(30)","file(60)","function(30)"),
697                                         )
698                         );
699         $database["intro"] = array(
700                         "fields" => array(
701                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
702                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
703                                         "fid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
704                                         "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
705                                         "knowyou" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
706                                         "duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
707                                         "note" => array("type" => "text", "not null" => "1"),
708                                         "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
709                                         "datetime" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
710                                         "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
711                                         "ignore" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
712                                         ),
713                         "indexes" => array(
714                                         "PRIMARY" => array("id"),
715                                         )
716                         );
717         $database["item"] = array(
718                         "fields" => array(
719                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
720                                         "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
721                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
722                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
723                                         "contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
724                                         "type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
725                                         "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
726                                         "gravity" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
727                                         "parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
728                                         "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
729                                         "extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
730                                         "thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
731                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
732                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
733                                         "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
734                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
735                                         "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
736                                         "owner-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
737                                         "owner-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
738                                         "owner-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
739                                         "author-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
740                                         "author-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
741                                         "author-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
742                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
743                                         "body" => array("type" => "mediumtext", "not null" => "1"),
744                                         "app" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
745                                         "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
746                                         "object-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
747                                         "object" => array("type" => "text", "not null" => "1"),
748                                         "target-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
749                                         "target" => array("type" => "text", "not null" => "1"),
750                                         "postopts" => array("type" => "text", "not null" => "1"),
751                                         "plink" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
752                                         "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
753                                         "event-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
754                                         "tag" => array("type" => "mediumtext", "not null" => "1"),
755                                         "attach" => array("type" => "mediumtext", "not null" => "1"),
756                                         "inform" => array("type" => "mediumtext", "not null" => "1"),
757                                         "file" => array("type" => "mediumtext", "not null" => "1"),
758                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
759                                         "coord" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
760                                         "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
761                                         "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
762                                         "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
763                                         "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
764                                         "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
765                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
766                                         "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
767                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
768                                         "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
769                                         "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
770                                         "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
771                                         "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
772                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
773                                         "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
774                                         "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
775                                         "last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"),
776                                         "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
777                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
778                                         ),
779                         "indexes" => array(
780                                         "PRIMARY" => array("id"),
781                                         "guid" => array("guid"),
782                                         "uri" => array("uri"),
783                                         "parent" => array("parent"),
784                                         "parent-uri" => array("parent-uri"),
785                                         "extid" => array("extid"),
786                                         "uid_id" => array("uid","id"),
787                                         "uid_created" => array("uid","created"),
788                                         "uid_unseen" => array("uid","unseen"),
789                                         "uid_network_received" => array("uid","network","received"),
790                                         "uid_received" => array("uid","received"),
791                                         "uid_network_commented" => array("uid","network","commented"),
792                                         "uid_commented" => array("uid","commented"),
793                                         "uid_title" => array("uid","title"),
794                                         "uid_thrparent" => array("uid","thr-parent"),
795                                         "uid_parenturi" => array("uid","parent-uri"),
796                                         "uid_contactid_created" => array("uid","contact-id","created"),
797                                         "wall_body" => array("wall","body(6)"),
798                                         "uid_visible_moderated_created" => array("uid","visible","moderated","created"),
799                                         "uid_uri" => array("uid","uri"),
800                                         "uid_wall_created" => array("uid","wall","created"),
801                                         "resource-id" => array("resource-id"),
802                                         "uid_type" => array("uid","type"),
803                                         "uid_starred" => array("uid","starred"),
804                                         "contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
805                                         "uid_wall_parent_created" => array("uid","wall","parent","created"),
806                                         "uid_type_changed" => array("uid","type","changed"),
807                                         "contactid_verb" => array("contact-id","verb"),
808                                         "deleted_changed" => array("deleted","changed"),
809                                         "uid_wall_changed" => array("uid","wall","changed"),
810                                         "uid_eventid" => array("uid","event-id"),
811                                         "uid_authorlink" => array("uid","author-link"),
812                                         "uid_ownerlink" => array("uid","owner-link"),
813                                         )
814                         );
815         $database["item_id"] = array(
816                         "fields" => array(
817                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
818                                         "iid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
819                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
820                                         "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
821                                         "service" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
822                                         ),
823                         "indexes" => array(
824                                         "PRIMARY" => array("id"),
825                                         "uid" => array("uid"),
826                                         "sid" => array("sid"),
827                                         "service" => array("service"),
828                                         "iid" => array("iid"),
829                                         )
830                         );
831         $database["locks"] = array(
832                         "fields" => array(
833                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
834                                         "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
835                                         "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
836                                         "created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"),
837                                         ),
838                         "indexes" => array(
839                                         "PRIMARY" => array("id"),
840                                         )
841                         );
842         $database["mail"] = array(
843                         "fields" => array(
844                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
845                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
846                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
847                                         "from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
848                                         "from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
849                                         "from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
850                                         "contact-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
851                                         "convid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
852                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
853                                         "body" => array("type" => "mediumtext", "not null" => "1"),
854                                         "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
855                                         "reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
856                                         "replied" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
857                                         "unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
858                                         "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
859                                         "parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
860                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
861                                         ),
862                         "indexes" => array(
863                                         "PRIMARY" => array("id"),
864                                         "uid" => array("uid"),
865                                         "guid" => array("guid"),
866                                         "convid" => array("convid"),
867                                         "reply" => array("reply"),
868                                         "uri" => array("uri"),
869                                         "parent-uri" => array("parent-uri"),
870                                         )
871                         );
872         $database["mailacct"] = array(
873                         "fields" => array(
874                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
875                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
876                                         "server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
877                                         "port" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
878                                         "ssltype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
879                                         "mailbox" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
880                                         "user" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
881                                         "pass" => array("type" => "text", "not null" => "1"),
882                                         "reply_to" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
883                                         "action" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
884                                         "movetofolder" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
885                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
886                                         "last_check" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
887                                         ),
888                         "indexes" => array(
889                                         "PRIMARY" => array("id"),
890                                         )
891                         );
892         $database["manage"] = array(
893                         "fields" => array(
894                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
895                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
896                                         "mid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
897                                         ),
898                         "indexes" => array(
899                                         "PRIMARY" => array("id"),
900                                         "uid_mid" => array("uid","mid"),
901                                         )
902                         );
903         $database["notify"] = array(
904                         "fields" => array(
905                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
906                                         "hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
907                                         "type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
908                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
909                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
910                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
911                                         "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
912                                         "msg" => array("type" => "mediumtext", "not null" => "1"),
913                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
914                                         "link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
915                                         "parent" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
916                                         "seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
917                                         "verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
918                                         "otype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
919                                         ),
920                         "indexes" => array(
921                                         "PRIMARY" => array("id"),
922                                         "uid" => array("uid"),
923                                         )
924                         );
925         $database["notify-threads"] = array(
926                         "fields" => array(
927                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
928                                         "notify-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
929                                         "master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
930                                         "parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
931                                         "receiver-uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
932                                         ),
933                         "indexes" => array(
934                                         "PRIMARY" => array("id"),
935                                         "master-parent-item" => array("master-parent-item"),
936                                         "receiver-uid" => array("receiver-uid"),
937                                         )
938                         );
939         $database["pconfig"] = array(
940                         "fields" => array(
941                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
942                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
943                                         "cat" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
944                                         "k" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
945                                         "v" => array("type" => "mediumtext", "not null" => "1"),
946                                         ),
947                         "indexes" => array(
948                                         "PRIMARY" => array("id"),
949                                         "uid_cat_k" => array("uid","cat(30)","k(30)"),
950                                         )
951                         );
952         $database["photo"] = array(
953                         "fields" => array(
954                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
955                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
956                                         "contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
957                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
958                                         "resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
959                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
960                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
961                                         "title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
962                                         "desc" => array("type" => "text", "not null" => "1"),
963                                         "album" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
964                                         "filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
965                                         "type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
966                                         "height" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
967                                         "width" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
968                                         "datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
969                                         "data" => array("type" => "mediumblob", "not null" => "1"),
970                                         "scale" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
971                                         "profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
972                                         "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
973                                         "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
974                                         "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
975                                         "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
976                                         ),
977                         "indexes" => array(
978                                         "PRIMARY" => array("id"),
979                                         "uid" => array("uid"),
980                                         "resource-id" => array("resource-id"),
981                                         "guid" => array("guid"),
982                                         )
983                         );
984         $database["poll"] = array(
985                         "fields" => array(
986                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
987                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
988                                         "q0" => array("type" => "mediumtext", "not null" => "1"),
989                                         "q1" => array("type" => "mediumtext", "not null" => "1"),
990                                         "q2" => array("type" => "mediumtext", "not null" => "1"),
991                                         "q3" => array("type" => "mediumtext", "not null" => "1"),
992                                         "q4" => array("type" => "mediumtext", "not null" => "1"),
993                                         "q5" => array("type" => "mediumtext", "not null" => "1"),
994                                         "q6" => array("type" => "mediumtext", "not null" => "1"),
995                                         "q7" => array("type" => "mediumtext", "not null" => "1"),
996                                         "q8" => array("type" => "mediumtext", "not null" => "1"),
997                                         "q9" => array("type" => "mediumtext", "not null" => "1"),
998                                         ),
999                         "indexes" => array(
1000                                         "PRIMARY" => array("id"),
1001                                         "uid" => array("uid"),
1002                                         )
1003                         );
1004         $database["poll_result"] = array(
1005                         "fields" => array(
1006                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1007                                         "poll_id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1008                                         "choice" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1009                                         ),
1010                         "indexes" => array(
1011                                         "PRIMARY" => array("id"),
1012                                         "poll_id" => array("poll_id"),
1013                                         "choice" => array("choice"),
1014                                         )
1015                         );
1016         $database["profile"] = array(
1017                         "fields" => array(
1018                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1019                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1020                                         "profile-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1021                                         "is-default" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1022                                         "hide-friends" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1023                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1024                                         "pdesc" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1025                                         "dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
1026                                         "address" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1027                                         "locality" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1028                                         "region" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1029                                         "postal-code" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1030                                         "country-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1031                                         "hometown" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1032                                         "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1033                                         "marital" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1034                                         "with" => array("type" => "text", "not null" => "1"),
1035                                         "howlong" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1036                                         "sexual" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1037                                         "politic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1038                                         "religion" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1039                                         "pub_keywords" => array("type" => "text", "not null" => "1"),
1040                                         "prv_keywords" => array("type" => "text", "not null" => "1"),
1041                                         "likes" => array("type" => "text", "not null" => "1"),
1042                                         "dislikes" => array("type" => "text", "not null" => "1"),
1043                                         "about" => array("type" => "text", "not null" => "1"),
1044                                         "summary" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1045                                         "music" => array("type" => "text", "not null" => "1"),
1046                                         "book" => array("type" => "text", "not null" => "1"),
1047                                         "tv" => array("type" => "text", "not null" => "1"),
1048                                         "film" => array("type" => "text", "not null" => "1"),
1049                                         "interest" => array("type" => "text", "not null" => "1"),
1050                                         "romance" => array("type" => "text", "not null" => "1"),
1051                                         "work" => array("type" => "text", "not null" => "1"),
1052                                         "education" => array("type" => "text", "not null" => "1"),
1053                                         "contact" => array("type" => "text", "not null" => "1"),
1054                                         "homepage" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1055                                         "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1056                                         "thumb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1057                                         "publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1058                                         "net-publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1059                                         ),
1060                         "indexes" => array(
1061                                         "PRIMARY" => array("id"),
1062                                         "hometown" => array("hometown"),
1063                                         )
1064                         );
1065         $database["profile_check"] = array(
1066                         "fields" => array(
1067                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1068                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1069                                         "cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1070                                         "dfrn_id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1071                                         "sec" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1072                                         "expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1073                                         ),
1074                         "indexes" => array(
1075                                         "PRIMARY" => array("id"),
1076                                         )
1077                         );
1078         $database["push_subscriber"] = array(
1079                         "fields" => 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                                         "callback_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1083                                         "topic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1084                                         "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1085                                         "push" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1086                                         "last_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1087                                         "secret" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1088                                         ),
1089                         "indexes" => array(
1090                                         "PRIMARY" => array("id"),
1091                                         )
1092                         );
1093         $database["queue"] = array(
1094                         "fields" => array(
1095                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1096                                         "cid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1097                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1098                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1099                                         "last" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1100                                         "content" => array("type" => "mediumtext", "not null" => "1"),
1101                                         "batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1102                                         ),
1103                         "indexes" => array(
1104                                         "PRIMARY" => array("id"),
1105                                         "cid" => array("cid"),
1106                                         "created" => array("created"),
1107                                         "last" => array("last"),
1108                                         "network" => array("network"),
1109                                         "batch" => array("batch"),
1110                                         )
1111                         );
1112         $database["register"] = array(
1113                         "fields" => array(
1114                                         "id" => array("type" => "int(11) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1115                                         "hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1116                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1117                                         "uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1118                                         "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1119                                         "language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
1120                                         ),
1121                         "indexes" => array(
1122                                         "PRIMARY" => array("id"),
1123                                         )
1124                         );
1125         $database["search"] = array(
1126                         "fields" => array(
1127                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1128                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1129                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1130                                         ),
1131                         "indexes" => array(
1132                                         "PRIMARY" => array("id"),
1133                                         "uid" => array("uid"),
1134                                         "term" => array("term"),
1135                                         )
1136                         );
1137         $database["session"] = array(
1138                         "fields" => array(
1139                                         "id" => array("type" => "bigint(20) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1140                                         "sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1141                                         "data" => array("type" => "text", "not null" => "1"),
1142                                         "expire" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1143                                         ),
1144                         "indexes" => array(
1145                                         "PRIMARY" => array("id"),
1146                                         "sid" => array("sid"),
1147                                         "expire" => array("expire"),
1148                                         )
1149                         );
1150         $database["sign"] = array(
1151                         "fields" => array(
1152                                         "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1153                                         "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1154                                         "retract_iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1155                                         "signed_text" => array("type" => "mediumtext", "not null" => "1"),
1156                                         "signature" => array("type" => "text", "not null" => "1"),
1157                                         "signer" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1158                                         ),
1159                         "indexes" => array(
1160                                         "PRIMARY" => array("id"),
1161                                         "iid" => array("iid"),
1162                                         "retract_iid" => array("retract_iid"),
1163                                         )
1164                         );
1165         $database["spam"] = array(
1166                         "fields" => array(
1167                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1168                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1169                                         "spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1170                                         "ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1171                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1172                                         "date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1173                                         ),
1174                         "indexes" => array(
1175                                         "PRIMARY" => array("id"),
1176                                         "uid" => array("uid"),
1177                                         "spam" => array("spam"),
1178                                         "ham" => array("ham"),
1179                                         "term" => array("term"),
1180                                         )
1181                         );
1182         $database["term"] = array(
1183                         "fields" => array(
1184                                         "tid" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1185                                         "oid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1186                                         "otype" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1187                                         "type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
1188                                         "term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1189                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1190                                         "aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1191                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1192                                         ),
1193                         "indexes" => array(
1194                                         "PRIMARY" => array("tid"),
1195                                         "oid_otype_type_term" => array("oid","otype","type","term"),
1196                                         "uid_term_tid" => array("uid","term","tid"),
1197                                         "type_term" => array("type","term"),
1198                                         "uid_otype_type_term_tid" => array("uid","otype","type","term","tid"),
1199                                         "otype_type_term_tid" => array("otype","type","term","tid"),
1200                                         )
1201                         );
1202         $database["thread"] = array(
1203                         "fields" => array(
1204                                         "iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1"),
1205                                         "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
1206                                         "contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1207                                         "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1208                                         "edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1209                                         "commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1210                                         "received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1211                                         "changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1212                                         "wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1213                                         "private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1214                                         "pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1215                                         "moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1216                                         "visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1217                                         "spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1218                                         "starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1219                                         "ignored" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1220                                         "bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1221                                         "unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
1222                                         "deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1223                                         "origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1224                                         "forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1225                                         "mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1226                                         "network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1227                                         ),
1228                         "indexes" => array(
1229                                         "PRIMARY" => array("iid"),
1230                                         "created" => array("created"),
1231                                         "commented" => array("commented"),
1232                                         "uid_network_commented" => array("uid","network","commented"),
1233                                         "uid_network_created" => array("uid","network","created"),
1234                                         "uid_contactid_commented" => array("uid","contact-id","commented"),
1235                                         "uid_contactid_created" => array("uid","contact-id","created"),
1236                                         "wall_private_received" => array("wall","private","received"),
1237                                         "uid_created" => array("uid","created"),
1238                                         "uid_commented" => array("uid","commented"),
1239                                         )
1240                         );
1241         $database["tokens"] = array(
1242                         "fields" => array(
1243                                         "id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
1244                                         "secret" => array("type" => "text", "not null" => "1"),
1245                                         "client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
1246                                         "expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1247                                         "scope" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
1248                                         "uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1249                                         ),
1250                         "indexes" => array(
1251                                         "PRIMARY" => array("id"),
1252                                         )
1253                         );
1254         $database["unique_contacts"] = array(
1255                         "fields" => array(
1256                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1257                                         "url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1258                                         "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1259                                         "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1260                                         "avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1261                                         "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1262                                         "about" => array("type" => "text", "not null" => "1"),
1263                                         ),
1264                         "indexes" => array(
1265                                         "PRIMARY" => array("id"),
1266                                         "url" => array("url"),
1267                                         )
1268                         );
1269         $database["user"] = array(
1270                         "fields" => array(
1271                                         "uid" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1272                                         "guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
1273                                         "username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1274                                         "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1275                                         "nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1276                                         "email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1277                                         "openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1278                                         "timezone" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
1279                                         "language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
1280                                         "register_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1281                                         "login_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1282                                         "default-location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1283                                         "allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1284                                         "theme" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1285                                         "pubkey" => array("type" => "text", "not null" => "1"),
1286                                         "prvkey" => array("type" => "text", "not null" => "1"),
1287                                         "spubkey" => array("type" => "text", "not null" => "1"),
1288                                         "sprvkey" => array("type" => "text", "not null" => "1"),
1289                                         "verified" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1290                                         "blocked" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1291                                         "blockwall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1292                                         "hidewall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1293                                         "blocktags" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
1294                                         "unkmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1295                                         "cntunkmail" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1296                                         "notify-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "65535"),
1297                                         "page-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1298                                         "prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1299                                         "pwdreset" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
1300                                         "maxreq" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
1301                                         "expire" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
1302                                         "account_removed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1303                                         "account_expired" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
1304                                         "account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1305                                         "expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
1306                                         "service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
1307                                         "def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
1308                                         "allow_cid" => array("type" => "mediumtext", "not null" => "1"),
1309                                         "allow_gid" => array("type" => "mediumtext", "not null" => "1"),
1310                                         "deny_cid" => array("type" => "mediumtext", "not null" => "1"),
1311                                         "deny_gid" => array("type" => "mediumtext", "not null" => "1"),
1312                                         "openidserver" => array("type" => "text", "not null" => "1"),
1313                                         ),
1314                         "indexes" => array(
1315                                         "PRIMARY" => array("uid"),
1316                                         "nickname" => array("nickname"),
1317                                         )
1318                         );
1319         $database["userd"] = array(
1320                         "fields" => array(
1321                                         "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
1322                                         "username" => array("type" => "varchar(255)", "not null" => "1"),
1323                                         ),
1324                         "indexes" => array(
1325                                         "PRIMARY" => array("id"),
1326                                         "username" => array("username"),
1327                                         )
1328                         );
1329
1330         return($database);
1331 }
1332
1333
1334 /*
1335  * run from command line
1336  */
1337 function dbstructure_run(&$argv, &$argc) {
1338         global $a, $db;
1339
1340         if(is_null($a)){
1341                 $a = new App;
1342         }
1343
1344         if(is_null($db)) {
1345                 @include(".htconfig.php");
1346                 require_once("include/dba.php");
1347                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
1348                         unset($db_host, $db_user, $db_pass, $db_data);
1349         }
1350
1351         update_structure(true, true);
1352 }
1353
1354 if (array_search(__file__,get_included_files())===0){
1355         dbstructure_run($_SERVER["argv"],$_SERVER["argc"]);
1356         killme();
1357 }