2014-04-28 23:55:47 +02:00
|
|
|
<?php
|
|
|
|
require_once("boot.php");
|
|
|
|
|
|
|
|
function dbstructure_run(&$argv, &$argc) {
|
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
if(is_null($a)){
|
|
|
|
$a = new App;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_null($db)) {
|
|
|
|
@include(".htconfig.php");
|
|
|
|
require_once("include/dba.php");
|
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
2014-06-04 00:44:58 +02:00
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
update_structure(true, true);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (array_search(__file__,get_included_files())===0){
|
|
|
|
dbstructure_run($argv,$argc);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
function table_structure($table) {
|
|
|
|
$structures = q("DESCRIBE `%s`", $table);
|
|
|
|
|
|
|
|
$indexes = q("SHOW INDEX FROM `%s`", $table);
|
|
|
|
|
|
|
|
$fielddata = array();
|
|
|
|
$indexdata = array();
|
|
|
|
|
|
|
|
if (is_array($indexes))
|
|
|
|
foreach ($indexes AS $index) {
|
|
|
|
if ($index["Index_type"] == "FULLTEXT")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$column = $index["Column_name"];
|
|
|
|
if ($index["Sub_part"] != "")
|
|
|
|
$column .= "(".$index["Sub_part"].")";
|
|
|
|
|
|
|
|
$indexdata[$index["Key_name"]][] = $column;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($structures)) {
|
|
|
|
foreach($structures AS $field) {
|
|
|
|
$fielddata[$field["Field"]]["type"] = $field["Type"];
|
|
|
|
if ($field["Null"] == "NO")
|
|
|
|
$fielddata[$field["Field"]]["not null"] = true;
|
|
|
|
|
|
|
|
if ($field["Default"] != "")
|
|
|
|
$fielddata[$field["Field"]]["default"] = $field["Default"];
|
|
|
|
|
|
|
|
if ($field["Extra"] != "")
|
|
|
|
$fielddata[$field["Field"]]["extra"] = $field["Extra"];
|
|
|
|
|
|
|
|
if ($field["Key"] == "PRI")
|
|
|
|
$fielddata[$field["Field"]]["primary"] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(array("fields"=>$fielddata, "indexes"=>$indexdata));
|
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function print_structure($database) {
|
|
|
|
foreach ($database AS $name => $structure) {
|
|
|
|
echo "\t".'$database["'.$name."\"] = array(\n";
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
echo "\t\t\t".'"fields" => array('."\n";
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
|
|
|
echo "\t\t\t\t\t".'"'.$fieldname.'" => array(';
|
|
|
|
|
|
|
|
$data = "";
|
|
|
|
foreach ($parameters AS $name => $value) {
|
|
|
|
if ($data != "")
|
|
|
|
$data .= ", ";
|
|
|
|
$data .= '"'.$name.'" => "'.$value.'"';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $data."),\n";
|
|
|
|
}
|
|
|
|
echo "\t\t\t\t\t),\n";
|
|
|
|
echo "\t\t\t".'"indexes" => array('."\n";
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
echo "\t\t\t\t\t".'"'.$indexname.'" => array("'.implode($fieldnames, '","').'"'."),\n";
|
|
|
|
}
|
|
|
|
echo "\t\t\t\t\t)\n";
|
|
|
|
echo "\t\t\t);\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function update_structure($verbose, $action) {
|
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
$errors = false;
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
// Get the current structure
|
2014-06-04 00:44:58 +02:00
|
|
|
$database = array();
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
$tables = q("show tables");
|
|
|
|
|
|
|
|
foreach ($tables AS $table) {
|
|
|
|
$table = current($table);
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
$database[$table] = table_structure($table);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the definition
|
|
|
|
$definition = db_definition();
|
|
|
|
|
|
|
|
// Compare it
|
|
|
|
foreach ($definition AS $name => $structure) {
|
2014-06-04 00:44:58 +02:00
|
|
|
$sql3="";
|
2014-06-15 10:47:20 +02:00
|
|
|
if (!isset($database[$name])) {
|
2014-06-04 00:44:58 +02:00
|
|
|
$r = db_create_table($name, $structure["fields"], $verbose, $action);
|
|
|
|
if(false === $r)
|
|
|
|
$errors .= t('Errors encountered creating database tables.').$name.EOL;
|
2014-06-15 10:47:20 +02:00
|
|
|
} else {
|
2014-04-28 23:55:47 +02:00
|
|
|
// Compare the field structure field by field
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
2014-06-04 00:44:58 +02:00
|
|
|
if (!isset($database[$name]["fields"][$fieldname])) {
|
|
|
|
$sql2=db_add_table_field($name, $fieldname, $parameters);
|
|
|
|
if ($sql3 == "")
|
|
|
|
$sql3 = "ALTER TABLE `".$name."` ".$sql2;
|
|
|
|
else
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
} else {
|
2014-04-28 23:55:47 +02:00
|
|
|
// Compare the field definition
|
2014-06-04 00:44:58 +02:00
|
|
|
$current_field_definition = implode($database[$name]["fields"][$fieldname]);
|
2014-04-28 23:55:47 +02:00
|
|
|
$new_field_definition = implode($parameters);
|
2014-06-04 00:44:58 +02:00
|
|
|
if ($current_field_definition != $new_field_definition) {
|
|
|
|
$sql2=db_modify_table_field($fieldname, $parameters);
|
|
|
|
if ($sql3 == "")
|
|
|
|
$sql3 = "ALTER TABLE `".$name."` ".$sql2;
|
|
|
|
else
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Drop the index if it isn't present in the definition
|
2014-06-04 00:44:58 +02:00
|
|
|
if (isset($database[$name]))
|
|
|
|
foreach ($database[$name]["indexes"] AS $indexname => $fieldnames)
|
|
|
|
if (!isset($structure["indexes"][$indexname])) {
|
|
|
|
$sql2=db_drop_index($indexname);
|
|
|
|
if ($sql3 == "")
|
|
|
|
$sql3 = "ALTER TABLE `".$name."` ".$sql2;
|
|
|
|
else
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
// Create the index
|
2014-06-15 10:47:20 +02:00
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
2014-06-04 00:44:58 +02:00
|
|
|
if (!isset($database[$name]["indexes"][$indexname])) {
|
|
|
|
$sql2=db_create_index($indexname, $fieldnames);
|
2014-06-15 10:47:20 +02:00
|
|
|
if ($sql2 != "") {
|
|
|
|
if ($sql3 == "")
|
|
|
|
$sql3 = "ALTER TABLE `".$name."` ".$sql2;
|
|
|
|
else
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
2014-06-15 10:47:20 +02:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
|
|
|
|
if ($sql3 != "") {
|
|
|
|
$sql3 .= ";";
|
|
|
|
|
|
|
|
if ($verbose)
|
|
|
|
echo $sql3."\n";
|
|
|
|
|
|
|
|
if ($action) {
|
|
|
|
$r = @$db->q($sql3);
|
|
|
|
if(false === $r)
|
|
|
|
$errors .= t('Errors encountered performing database changes.').$sql3.EOL;
|
|
|
|
}
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
|
|
|
|
return $errors;
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2014-04-29 12:35:24 +02:00
|
|
|
function db_field_command($parameters, $create = true) {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fieldstruct = $parameters["type"];
|
|
|
|
|
|
|
|
if ($parameters["not null"])
|
|
|
|
$fieldstruct .= " NOT NULL";
|
|
|
|
|
|
|
|
if ($parameters["default"] != "")
|
|
|
|
$fieldstruct .= " DEFAULT '".$parameters["default"]."'";
|
|
|
|
|
|
|
|
if ($parameters["extra"] != "")
|
|
|
|
$fieldstruct .= " ".$parameters["extra"];
|
|
|
|
|
2014-04-29 12:35:24 +02:00
|
|
|
if (($parameters["primary"] != "") AND $create)
|
2014-04-28 23:55:47 +02:00
|
|
|
$fieldstruct .= " PRIMARY KEY";
|
|
|
|
|
|
|
|
return($fieldstruct);
|
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function db_create_table($name, $fields, $verbose, $action) {
|
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
$r = true;
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
$sql = "";
|
|
|
|
foreach($fields AS $fieldname => $field) {
|
|
|
|
if ($sql != "")
|
|
|
|
$sql .= ",\n";
|
|
|
|
|
|
|
|
$sql .= "`".dbesc($fieldname)."` ".db_field_command($field);
|
|
|
|
}
|
|
|
|
|
2014-06-15 10:47:20 +02:00
|
|
|
$sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n", dbesc($name)).$sql."\n) DEFAULT CHARSET=utf8";
|
2014-06-04 00:44:58 +02:00
|
|
|
|
|
|
|
if ($verbose)
|
|
|
|
echo $sql.";\n";
|
|
|
|
|
|
|
|
if ($action)
|
|
|
|
$r = @$db->q($sql);
|
|
|
|
|
|
|
|
return $r;
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function db_add_table_field($fieldname, $parameters) {
|
|
|
|
$sql = sprintf("ADD `%s` %s", dbesc($fieldname), db_field_command($parameters));
|
|
|
|
return($sql);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function db_modify_table_field($fieldname, $parameters) {
|
|
|
|
$sql = sprintf("MODIFY `%s` %s", dbesc($fieldname), db_field_command($parameters, false));
|
|
|
|
return($sql);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function db_drop_index($indexname) {
|
|
|
|
$sql = sprintf("DROP INDEX `%s`", dbesc($indexname));
|
|
|
|
return($sql);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
function db_create_index($indexname, $fieldnames) {
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
if ($indexname == "PRIMARY")
|
|
|
|
return;
|
|
|
|
|
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "")
|
|
|
|
$names .= ",";
|
|
|
|
|
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches))
|
|
|
|
$names .= "`".dbesc($matches[1])."`(".intval($matches[2]).")";
|
|
|
|
else
|
|
|
|
$names .= "`".dbesc($fieldname)."`";
|
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
$sql = sprintf("ADD INDEX `%s` (%s)", dbesc($indexname), $names);
|
|
|
|
return($sql);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function db_definition() {
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
$database = array();
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["addon"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"version" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"installed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"timestamp" => array("type" => "bigint(20)", "not null" => "1", "default" => "0"),
|
|
|
|
"plugin_admin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["attach"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"hash" => array("type" => "varchar(64)", "not null" => "1"),
|
|
|
|
"filename" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"filetype" => array("type" => "varchar(64)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"filesize" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"data" => array("type" => "longblob", "not null" => "1"),
|
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"allow_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["auth_codes"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
|
|
|
|
"client_id" => array("type" => "varchar(20)", "not null" => "1"),
|
|
|
|
"redirect_uri" => array("type" => "varchar(200)", "not null" => "1"),
|
|
|
|
"expires" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"scope" => array("type" => "varchar(250)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["cache"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
2014-06-04 00:44:58 +02:00
|
|
|
"k" => array("type" => "varchar(255)", "not null" => "1", "primary" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"v" => array("type" => "text", "not null" => "1"),
|
|
|
|
"updated" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("k"),
|
|
|
|
"updated" => array("updated"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["challenge"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"challenge" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"dfrn-id" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"expire" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"type" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"last_update" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["clients"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"client_id" => array("type" => "varchar(20)", "not null" => "1", "primary" => "1"),
|
|
|
|
"pw" => array("type" => "varchar(20)", "not null" => "1"),
|
|
|
|
"redirect_uri" => array("type" => "varchar(200)", "not null" => "1"),
|
2014-04-29 12:35:24 +02:00
|
|
|
"name" => array("type" => "text"),
|
|
|
|
"icon" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("client_id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["config"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"cat" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"k" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"v" => array("type" => "text", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2014-06-23 01:27:00 +02:00
|
|
|
"access" => array("cat(30)","k(30)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["contact"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"remote_self" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"rel" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"network" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nick" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"attag" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"photo" => array("type" => "text", "not null" => "1"),
|
|
|
|
"thumb" => array("type" => "text", "not null" => "1"),
|
|
|
|
"micro" => array("type" => "text", "not null" => "1"),
|
|
|
|
"site-pubkey" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"issued-id" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"dfrn-id" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nurl" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"addr" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"alias" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pubkey" => array("type" => "text", "not null" => "1"),
|
|
|
|
"prvkey" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"batch" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"request" => array("type" => "text", "not null" => "1"),
|
|
|
|
"notify" => array("type" => "text", "not null" => "1"),
|
|
|
|
"poll" => array("type" => "text", "not null" => "1"),
|
|
|
|
"confirm" => array("type" => "text", "not null" => "1"),
|
|
|
|
"poco" => array("type" => "text", "not null" => "1"),
|
|
|
|
"aes_allow" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"ret-aes" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"usehub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"subhub" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"hub-verify" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"last-update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"success_update" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"name-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"term-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"priority" => array("type" => "tinyint(3)", "not null" => "1"),
|
|
|
|
"blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
|
|
|
|
"readonly" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"writable" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"forum" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"prv" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"archive" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"pending" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
|
|
|
|
"rating" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"reason" => array("type" => "text", "not null" => "1"),
|
|
|
|
"closeness" => array("type" => "tinyint(2)", "not null" => "1", "default" => "99"),
|
|
|
|
"info" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"profile-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"bdyear" => array("type" => "varchar(4)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"bd" => array("type" => "date", "not null" => "1"),
|
|
|
|
"notify_new_posts" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"fetch_further_information" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["conv"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"recips" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"creator" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"subject" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["deliverq"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"cmd" => array("type" => "varchar(32)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"item" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"contact" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["dsprphotoq"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"msg" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"attempt" => array("type" => "tinyint(4)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["event"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"uri" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"start" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"finish" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"summary" => array("type" => "text", "not null" => "1"),
|
|
|
|
"desc" => array("type" => "text", "not null" => "1"),
|
|
|
|
"location" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"type" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"nofinish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"adjust" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
|
|
|
|
"ignore" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"allow_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["fcontact"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"request" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nick" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"addr" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"batch" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"notify" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"poll" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"confirm" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"priority" => array("type" => "tinyint(1)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1"),
|
|
|
|
"alias" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pubkey" => array("type" => "text", "not null" => "1"),
|
|
|
|
"updated" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"addr" => array("addr"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["ffinder"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"cid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"fid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["fserver"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"server" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"posturl" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"key" => array("type" => "text", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"server" => array("server"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["fsuggest"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"request" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"note" => array("type" => "text", "not null" => "1"),
|
|
|
|
"created" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["gcign"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"gcid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"gcid" => array("gcid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["gcontact"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nurl" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"connect" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"nurl" => array("nurl"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["glink"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"gcid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"zcid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"updated" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"cid_uid_gcid_zcid" => array("cid","uid","gcid","zcid"),
|
|
|
|
"gcid" => array("gcid"),
|
|
|
|
"zcid" => array("zcid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["group"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["group_member"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"gid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"contact-id" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid_gid_contactid" => array("uid","gid","contact-id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["guid"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"guid" => array("guid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["hook"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"hook" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"file" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"function" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2014-06-23 01:27:00 +02:00
|
|
|
"hook_file_function" => array("hook(30)","file(60)","function(30)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["intro"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"fid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"contact-id" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"knowyou" => array("type" => "tinyint(1)", "not null" => "1"),
|
|
|
|
"duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"note" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"hash" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"datetime" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
|
|
|
|
"ignore" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["item"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1"),
|
|
|
|
"uri" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"contact-id" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"type" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"gravity" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"parent-uri" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"extid" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"thr-parent" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"owner-name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"owner-link" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"owner-avatar" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"author-name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"author-link" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"author-avatar" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"title" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"body" => array("type" => "mediumtext", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"app" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"verb" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"object-type" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"object" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"target-type" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"target" => array("type" => "text", "not null" => "1"),
|
|
|
|
"postopts" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"plink" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"resource-id" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-29 12:35:24 +02:00
|
|
|
"event-id" => array("type" => "int(11)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"tag" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"attach" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"inform" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"file" => array("type" => "mediumtext", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"location" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"coord" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"allow_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
|
|
|
|
"deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"last-child" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "1"),
|
|
|
|
"mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"guid" => array("guid"),
|
|
|
|
"uri" => array("uri"),
|
|
|
|
"parent" => array("parent"),
|
|
|
|
"parent-uri" => array("parent-uri"),
|
|
|
|
"extid" => array("extid"),
|
|
|
|
"uid_id" => array("uid","id"),
|
|
|
|
"uid_created" => array("uid","created"),
|
|
|
|
"uid_unseen" => array("uid","unseen"),
|
|
|
|
"uid_network_received" => array("uid","network","received"),
|
|
|
|
"uid_received" => array("uid","received"),
|
|
|
|
"uid_network_commented" => array("uid","network","commented"),
|
|
|
|
"uid_commented" => array("uid","commented"),
|
|
|
|
"uid_title" => array("uid","title"),
|
|
|
|
"uid_thrparent" => array("uid","thr-parent"),
|
|
|
|
"uid_parenturi" => array("uid","parent-uri"),
|
|
|
|
"uid_contactid_created" => array("uid","contact-id","created"),
|
|
|
|
"wall_body" => array("wall","body(6)"),
|
|
|
|
"uid_visible_moderated_created" => array("uid","visible","moderated","created"),
|
|
|
|
"uid_uri" => array("uid","uri"),
|
|
|
|
"uid_wall_created" => array("uid","wall","created"),
|
|
|
|
"resource-id" => array("resource-id"),
|
|
|
|
"uid_type" => array("uid","type"),
|
|
|
|
"uid_starred" => array("uid","starred"),
|
|
|
|
"contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"),
|
|
|
|
"uid_wall_parent_created" => array("uid","wall","parent","created"),
|
|
|
|
"uid_type_changed" => array("uid","type","changed"),
|
|
|
|
"contactid_verb" => array("contact-id","verb"),
|
|
|
|
"deleted_changed" => array("deleted","changed"),
|
|
|
|
"uid_wall_changed" => array("uid","wall","changed"),
|
|
|
|
"uid_eventid" => array("uid","event-id"),
|
|
|
|
"uid_authorlink" => array("uid","author-link"),
|
|
|
|
"uid_ownerlink" => array("uid","owner-link"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["item_id"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"iid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"sid" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"service" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"sid" => array("sid"),
|
|
|
|
"service" => array("service"),
|
|
|
|
"iid" => array("iid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["locks"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(128)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["mail"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1"),
|
|
|
|
"from-name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"from-photo" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"from-url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"contact-id" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-29 12:35:24 +02:00
|
|
|
"convid" => array("type" => "int(11) unsigned", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"title" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"body" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"seen" => array("type" => "tinyint(1)", "not null" => "1"),
|
|
|
|
"reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"replied" => array("type" => "tinyint(1)", "not null" => "1"),
|
|
|
|
"unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"uri" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"parent-uri" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"guid" => array("guid"),
|
|
|
|
"convid" => array("convid"),
|
|
|
|
"reply" => array("reply"),
|
|
|
|
"uri" => array("uri"),
|
|
|
|
"parent-uri" => array("parent-uri"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["mailacct"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"server" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"port" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"ssltype" => array("type" => "varchar(16)", "not null" => "1"),
|
|
|
|
"mailbox" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"user" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pass" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"reply_to" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"action" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"movetofolder" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"last_check" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["manage"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"mid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid_mid" => array("uid","mid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["notify"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"hash" => array("type" => "varchar(64)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"type" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"date" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"msg" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"link" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"parent" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"verb" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"otype" => array("type" => "varchar(16)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["notify-threads"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"notify-id" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"receiver-uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"master-parent-item" => array("master-parent-item"),
|
|
|
|
"receiver-uid" => array("receiver-uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["pconfig"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"cat" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"k" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"v" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2014-06-23 01:27:00 +02:00
|
|
|
"access" => array("uid","cat(30)","k(30)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["photo"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
2014-04-29 12:35:24 +02:00
|
|
|
"contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1"),
|
|
|
|
"resource-id" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"title" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"desc" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"album" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"filename" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"height" => array("type" => "smallint(6)", "not null" => "1"),
|
|
|
|
"width" => array("type" => "smallint(6)", "not null" => "1"),
|
|
|
|
"datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"data" => array("type" => "mediumblob", "not null" => "1"),
|
|
|
|
"scale" => array("type" => "tinyint(3)", "not null" => "1"),
|
|
|
|
"profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"allow_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"resource-id" => array("resource-id"),
|
|
|
|
"guid" => array("guid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["poll"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"q0" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q1" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q2" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q3" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q4" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q5" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q6" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q7" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q8" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"q9" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["poll_result"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"poll_id" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"choice" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"poll_id" => array("poll_id"),
|
|
|
|
"choice" => array("choice"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["profile"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"profile-name" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"is-default" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"hide-friends" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"pdesc" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0000-00-00"),
|
|
|
|
"address" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"locality" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"region" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"postal-code" => array("type" => "varchar(32)", "not null" => "1"),
|
|
|
|
"country-name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"hometown" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"gender" => array("type" => "varchar(32)", "not null" => "1"),
|
|
|
|
"marital" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"with" => array("type" => "text", "not null" => "1"),
|
|
|
|
"howlong" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"sexual" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"politic" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"religion" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pub_keywords" => array("type" => "text", "not null" => "1"),
|
|
|
|
"prv_keywords" => array("type" => "text", "not null" => "1"),
|
|
|
|
"likes" => array("type" => "text", "not null" => "1"),
|
|
|
|
"dislikes" => array("type" => "text", "not null" => "1"),
|
|
|
|
"about" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"summary" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"music" => array("type" => "text", "not null" => "1"),
|
|
|
|
"book" => array("type" => "text", "not null" => "1"),
|
|
|
|
"tv" => array("type" => "text", "not null" => "1"),
|
|
|
|
"film" => array("type" => "text", "not null" => "1"),
|
|
|
|
"interest" => array("type" => "text", "not null" => "1"),
|
|
|
|
"romance" => array("type" => "text", "not null" => "1"),
|
|
|
|
"work" => array("type" => "text", "not null" => "1"),
|
|
|
|
"education" => array("type" => "text", "not null" => "1"),
|
|
|
|
"contact" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"homepage" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"thumb" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"net-publish" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"hometown" => array("hometown"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["profile_check"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
2014-04-29 12:35:24 +02:00
|
|
|
"cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"dfrn_id" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"sec" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"expire" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["push_subscriber"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"callback_url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"topic" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nickname" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"push" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"last_update" => array("type" => "datetime", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"secret" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["queue"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"last" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"content" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"cid" => array("cid"),
|
|
|
|
"created" => array("created"),
|
|
|
|
"last" => array("last"),
|
|
|
|
"network" => array("network"),
|
|
|
|
"batch" => array("batch"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["register"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"hash" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1"),
|
|
|
|
"uid" => array("type" => "int(11) unsigned", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"password" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"language" => array("type" => "varchar(16)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["search"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"term" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"term" => array("term"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["session"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "bigint(20) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"sid" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"data" => array("type" => "text", "not null" => "1"),
|
|
|
|
"expire" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"sid" => array("sid"),
|
|
|
|
"expire" => array("expire"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["sign"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"retract_iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"signed_text" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"signature" => array("type" => "text", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"signer" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"iid" => array("iid"),
|
|
|
|
"retract_iid" => array("retract_iid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["spam"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"term" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"spam" => array("spam"),
|
|
|
|
"ham" => array("ham"),
|
|
|
|
"term" => array("term"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["term"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"tid" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
|
|
|
"oid" => array("type" => "int(10) unsigned", "not null" => "1"),
|
|
|
|
"otype" => array("type" => "tinyint(3) unsigned", "not null" => "1"),
|
|
|
|
"type" => array("type" => "tinyint(3) unsigned", "not null" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"term" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("tid"),
|
|
|
|
"oid_otype_type_term" => array("oid","otype","type","term"),
|
|
|
|
"uid_term_tid" => array("uid","term","tid"),
|
|
|
|
"type_term" => array("type","term"),
|
|
|
|
"uid_otype_type_term_tid" => array("uid","otype","type","term","tid"),
|
|
|
|
"otype_type_term_tid" => array("otype","type","term","tid"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["thread"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1"),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"commented" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"received" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"changed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"wall" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"private" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"moderated" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"spam" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"starred" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"bookmark" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"unseen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
|
|
|
|
"deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"origin" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"forum_mode" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"mention" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("iid"),
|
|
|
|
"created" => array("created"),
|
|
|
|
"commented" => array("commented"),
|
|
|
|
"uid_network_commented" => array("uid","network","commented"),
|
|
|
|
"uid_network_created" => array("uid","network","created"),
|
|
|
|
"uid_contactid_commented" => array("uid","contact-id","commented"),
|
|
|
|
"uid_contactid_created" => array("uid","contact-id","created"),
|
|
|
|
"wall_private_received" => array("wall","private","received"),
|
|
|
|
"uid_created" => array("uid","created"),
|
|
|
|
"uid_commented" => array("uid","commented"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["tokens"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "varchar(40)", "not null" => "1", "primary" => "1"),
|
2014-04-29 12:35:24 +02:00
|
|
|
"secret" => array("type" => "text", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"client_id" => array("type" => "varchar(20)", "not null" => "1"),
|
|
|
|
"expires" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
"scope" => array("type" => "varchar(200)", "not null" => "1"),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["unique_contacts"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nick" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"avatar" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"url" => array("url"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["user"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1"),
|
|
|
|
"username" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"password" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"nickname" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"email" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"openid" => array("type" => "varchar(255)", "not null" => "1"),
|
|
|
|
"timezone" => array("type" => "varchar(128)", "not null" => "1"),
|
|
|
|
"language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"register_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"login_date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"default-location" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"theme" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pubkey" => array("type" => "text", "not null" => "1"),
|
|
|
|
"prvkey" => array("type" => "text", "not null" => "1"),
|
|
|
|
"spubkey" => array("type" => "text", "not null" => "1"),
|
|
|
|
"sprvkey" => array("type" => "text", "not null" => "1"),
|
|
|
|
"verified" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"blocked" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"blockwall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"hidewall" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"blocktags" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"unkmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"cntunkmail" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
|
|
|
|
"notify-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "65535"),
|
|
|
|
"page-flags" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"pwdreset" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"maxreq" => array("type" => "int(11)", "not null" => "1", "default" => "10"),
|
|
|
|
"expire" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"account_removed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"account_expired" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
|
|
|
"expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"service_class" => array("type" => "varchar(32)", "not null" => "1"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"allow_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext", "not null" => "1"),
|
|
|
|
"openidserver" => array("type" => "text", "not null" => "1"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("uid"),
|
|
|
|
"nickname" => array("nickname"),
|
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["userd"] = array(
|
2014-04-29 13:19:44 +02:00
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2014-06-04 00:44:58 +02:00
|
|
|
"username" => array("type" => "varchar(255)", "not null" => "1"),
|
2014-04-29 13:19:44 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"username" => array("username"),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
return($database);
|
2014-04-29 13:19:44 +02:00
|
|
|
}
|