2014-04-28 23:55:47 +02:00
|
|
|
<?php
|
2017-03-19 23:58:35 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-04-30 06:01:26 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-03-19 23:58:35 +01:00
|
|
|
|
2017-04-04 19:47:32 +02:00
|
|
|
require_once "boot.php";
|
|
|
|
require_once "include/text.php";
|
2014-09-07 17:28:38 +02:00
|
|
|
|
|
|
|
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
|
|
|
|
2017-05-28 10:39:41 +02:00
|
|
|
const DB_UPDATE_NOT_CHECKED = 0; // Database check wasn't executed before
|
|
|
|
const DB_UPDATE_SUCCESSFUL = 1; // Database check was successful
|
|
|
|
const DB_UPDATE_FAILED = 2; // Database check failed
|
|
|
|
|
2017-04-22 23:36:01 +02:00
|
|
|
/*
|
|
|
|
* Converts all tables from MyISAM to InnoDB
|
|
|
|
*/
|
|
|
|
function convert_to_innodb() {
|
|
|
|
global $db;
|
|
|
|
|
|
|
|
$r = q("SELECT `TABLE_NAME` FROM `information_schema`.`tables` WHERE `engine` = 'MyISAM' AND `table_schema` = '%s'",
|
|
|
|
dbesc($db->database_name()));
|
|
|
|
|
|
|
|
if (!dbm::is_result($r)) {
|
|
|
|
echo t('There are no tables on MyISAM.')."\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($r AS $table) {
|
|
|
|
$sql = sprintf("ALTER TABLE `%s` engine=InnoDB;", dbesc($table['TABLE_NAME']));
|
|
|
|
echo $sql."\n";
|
|
|
|
|
|
|
|
$result = @$db->q($sql);
|
|
|
|
if (!dbm::is_result($result)) {
|
|
|
|
print_update_error($db, $sql);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-07 14:23:03 +02:00
|
|
|
/*
|
|
|
|
* send the email and do what is needed to do on update fails
|
|
|
|
*
|
|
|
|
* @param update_id (int) number of failed update
|
|
|
|
* @param error_message (str) error message
|
|
|
|
*/
|
2017-04-22 23:36:01 +02:00
|
|
|
function update_fail($update_id, $error_message) {
|
2014-09-07 14:23:03 +02:00
|
|
|
//send the administrators an e-mail
|
|
|
|
$admin_mail_list = "'".implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email']))))."'";
|
|
|
|
$adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
|
|
|
|
$admin_mail_list
|
|
|
|
);
|
|
|
|
|
2016-09-19 22:13:33 +02:00
|
|
|
// No valid result?
|
|
|
|
if (!dbm::is_result($adminlist)) {
|
|
|
|
logger(sprintf('Cannot notify administrators about update_id=%d, error_message=%s', $update_id, $error_message), LOGGER_WARNING);
|
|
|
|
|
|
|
|
// Don't continue
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-07 14:23:03 +02:00
|
|
|
// every admin could had different language
|
|
|
|
foreach ($adminlist as $admin) {
|
|
|
|
$lang = (($admin['language'])?$admin['language']:'en');
|
|
|
|
push_lang($lang);
|
|
|
|
|
|
|
|
$preamble = deindent(t("
|
|
|
|
The friendica developers released update %s recently,
|
|
|
|
but when I tried to install it, something went terribly wrong.
|
|
|
|
This needs to be fixed soon and I can't do it alone. Please contact a
|
2014-09-07 17:28:38 +02:00
|
|
|
friendica developer if you can not help me on your own. My database might be invalid."));
|
2014-09-07 14:23:03 +02:00
|
|
|
$body = t("The error message is\n[pre]%s[/pre]");
|
|
|
|
$preamble = sprintf($preamble, $update_id);
|
|
|
|
$body = sprintf($body, $error_message);
|
|
|
|
|
|
|
|
notification(array(
|
|
|
|
'type' => "SYSTEM_EMAIL",
|
|
|
|
'to_email' => $admin['email'],
|
|
|
|
'preamble' => $preamble,
|
|
|
|
'body' => $body,
|
|
|
|
'language' => $lang,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
$email_tpl = get_intltext_template("update_fail_eml.tpl");
|
|
|
|
$email_msg = replace_macros($email_tpl, array(
|
|
|
|
'$sitename' => $a->config['sitename'],
|
2016-12-19 14:26:13 +01:00
|
|
|
'$siteurl' => App::get_baseurl(),
|
2014-09-07 14:23:03 +02:00
|
|
|
'$update' => DB_UPDATE_VERSION,
|
|
|
|
'$error' => sprintf(t('Update %s failed. See error logs.'), DB_UPDATE_VERSION)
|
|
|
|
));
|
2016-12-19 14:26:13 +01:00
|
|
|
$subject=sprintf(t('Update Error at %s'), App::get_baseurl());
|
2014-09-07 14:23:03 +02:00
|
|
|
require_once('include/email.php');
|
|
|
|
$subject = email_header_encode($subject,'UTF-8');
|
|
|
|
mail($a->config['admin_email'], $subject, $email_msg,
|
|
|
|
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME']."\n"
|
|
|
|
.'Content-type: text/plain; charset=UTF-8'."\n"
|
|
|
|
.'Content-transfer-encoding: 8bit');
|
|
|
|
*/
|
|
|
|
//try the logger
|
|
|
|
logger("CRITICAL: Database structure update failed: ".$retval);
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
function table_structure($table) {
|
|
|
|
$structures = q("DESCRIBE `%s`", $table);
|
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
$full_columns = q("SHOW FULL COLUMNS FROM `%s`", $table);
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
$indexes = q("SHOW INDEX FROM `%s`", $table);
|
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
$table_status = q("SHOW TABLE STATUS WHERE `name` = '%s'", $table);
|
|
|
|
|
|
|
|
if (dbm::is_result($table_status)) {
|
|
|
|
$table_status = $table_status[0];
|
|
|
|
} else {
|
|
|
|
$table_status = array();
|
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
$fielddata = array();
|
|
|
|
$indexdata = array();
|
|
|
|
|
2016-09-19 22:13:33 +02:00
|
|
|
if (dbm::is_result($indexes))
|
2014-04-28 23:55:47 +02:00
|
|
|
foreach ($indexes AS $index) {
|
2016-10-02 05:29:30 +02:00
|
|
|
if ($index['Key_name'] != 'PRIMARY' && $index['Non_unique'] == '0' && !isset($indexdata[$index["Key_name"]])) {
|
|
|
|
$indexdata[$index["Key_name"]] = array('UNIQUE');
|
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
$column = $index["Column_name"];
|
2016-10-01 10:21:37 +02:00
|
|
|
// On utf8mb4 a varchar index can only have a length of 191
|
2017-04-21 23:26:05 +02:00
|
|
|
// The "show index" command sometimes returns this value although this value wasn't added manually.
|
|
|
|
// Because we don't want to add this number to every index, we ignore bigger numbers
|
|
|
|
if (($index["Sub_part"] != "") AND (($index["Sub_part"] < 191) OR ($index["Key_name"] == "PRIMARY"))) {
|
2014-04-28 23:55:47 +02:00
|
|
|
$column .= "(".$index["Sub_part"].")";
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
$indexdata[$index["Key_name"]][] = $column;
|
|
|
|
}
|
2016-09-19 22:13:33 +02:00
|
|
|
if (dbm::is_result($structures)) {
|
2016-12-22 16:50:40 +01:00
|
|
|
foreach ($structures AS $field) {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fielddata[$field["Field"]]["type"] = $field["Type"];
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($field["Null"] == "NO") {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fielddata[$field["Field"]]["not null"] = true;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
if (isset($field["Default"])) {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fielddata[$field["Field"]]["default"] = $field["Default"];
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($field["Extra"] != "") {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fielddata[$field["Field"]]["extra"] = $field["Extra"];
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($field["Key"] == "PRI") {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fielddata[$field["Field"]]["primary"] = true;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-14 09:58:56 +02:00
|
|
|
if (dbm::is_result($full_columns)) {
|
|
|
|
foreach ($full_columns AS $column) {
|
|
|
|
$fielddata[$column["Field"]]["Collation"] = $column["Collation"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return array("fields" => $fielddata, "indexes" => $indexdata, "table_status" => $table_status);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
function print_structure($database) {
|
2015-03-25 09:47:59 +01:00
|
|
|
echo "-- ------------------------------------------\n";
|
|
|
|
echo "-- ".FRIENDICA_PLATFORM." ".FRIENDICA_VERSION." (".FRIENDICA_CODENAME,")\n";
|
|
|
|
echo "-- DB_UPDATE_VERSION ".DB_UPDATE_VERSION."\n";
|
|
|
|
echo "-- ------------------------------------------\n\n\n";
|
2014-06-04 00:44:58 +02:00
|
|
|
foreach ($database AS $name => $structure) {
|
2015-03-25 09:47:59 +01:00
|
|
|
echo "--\n";
|
|
|
|
echo "-- TABLE $name\n";
|
|
|
|
echo "--\n";
|
2017-04-14 09:58:56 +02:00
|
|
|
db_create_table($name, $structure['fields'], true, false, $structure["indexes"]);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2015-03-25 09:47:59 +01:00
|
|
|
echo "\n";
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 15:37:42 +02:00
|
|
|
/**
|
|
|
|
* @brief Print out database error messages
|
|
|
|
*
|
|
|
|
* @param object $db Database object
|
|
|
|
* @param string $message Message to be added to the error message
|
|
|
|
*
|
|
|
|
* @return string Error message
|
|
|
|
*/
|
2017-04-16 15:21:49 +02:00
|
|
|
function print_update_error($db, $message) {
|
2017-04-21 23:26:05 +02:00
|
|
|
echo sprintf(t("\nError %d occurred during database update:\n%s\n"),
|
2017-04-16 15:21:49 +02:00
|
|
|
$db->errorno, $db->error);
|
|
|
|
|
|
|
|
return t('Errors encountered performing database changes: ').$message.EOL;
|
|
|
|
}
|
|
|
|
|
2015-03-31 10:21:29 +02:00
|
|
|
function update_structure($verbose, $action, $tables=null, $definition=null) {
|
2014-06-04 00:44:58 +02:00
|
|
|
global $a, $db;
|
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($action) {
|
2017-03-19 14:24:07 +01:00
|
|
|
Config::set('system', 'maintenance', 1);
|
2017-04-14 13:26:47 +02:00
|
|
|
Config::set('system', 'maintenance_reason', sprintf(t(': Database update'), dbm::date().' '.date('e')));
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2016-10-02 15:52:52 +02:00
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
$errors = false;
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2014-09-04 00:58:52 +02:00
|
|
|
logger('updating structure', LOGGER_DEBUG);
|
|
|
|
|
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
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
if (is_null($tables)) {
|
|
|
|
$tables = q("SHOW TABLES");
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
if (dbm::is_result($tables)) {
|
|
|
|
foreach ($tables AS $table) {
|
|
|
|
$table = current($table);
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
logger(sprintf('updating structure for table %s ...', $table), LOGGER_DEBUG);
|
|
|
|
$database[$table] = table_structure($table);
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the definition
|
2016-12-22 16:50:40 +01:00
|
|
|
if (is_null($definition)) {
|
2017-04-14 09:58:56 +02:00
|
|
|
$definition = db_definition();
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2016-10-04 01:17:40 +02:00
|
|
|
// MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
|
2016-10-09 09:01:19 +02:00
|
|
|
if ((version_compare($db->server_info(), '5.7.4') >= 0) AND
|
|
|
|
!(strpos($db->server_info(), 'MariaDB') !== false)) {
|
2016-10-04 01:06:47 +02:00
|
|
|
$ignore = '';
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2016-10-04 01:06:47 +02:00
|
|
|
$ignore = ' IGNORE';
|
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
// Compare it
|
|
|
|
foreach ($definition AS $name => $structure) {
|
2015-12-08 10:35:08 +01:00
|
|
|
$is_new_table = False;
|
2017-01-29 18:31:20 +01:00
|
|
|
$group_by = "";
|
|
|
|
$sql3 = "";
|
2014-06-15 10:47:20 +02:00
|
|
|
if (!isset($database[$name])) {
|
2017-04-14 09:58:56 +02:00
|
|
|
$r = db_create_table($name, $structure["fields"], $verbose, $action, $structure['indexes']);
|
2016-12-14 09:42:36 +01:00
|
|
|
if (!dbm::is_result($r)) {
|
2017-04-16 15:21:49 +02:00
|
|
|
$errors .= print_update_error($db, $name);
|
2015-12-03 16:39:20 +01:00
|
|
|
}
|
2015-12-08 10:35:08 +01:00
|
|
|
$is_new_table = True;
|
2014-06-15 10:47:20 +02:00
|
|
|
} else {
|
2017-01-16 00:30:43 +01:00
|
|
|
$is_unique = false;
|
|
|
|
$temp_name = $name;
|
|
|
|
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
if (isset($database[$name]["indexes"][$indexname])) {
|
|
|
|
$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
|
|
|
|
} else {
|
|
|
|
$current_index_definition = "__NOT_SET__";
|
|
|
|
}
|
|
|
|
$new_index_definition = implode(",",$fieldnames);
|
|
|
|
if ($current_index_definition != $new_index_definition) {
|
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
$is_unique = true;
|
2017-01-29 18:31:20 +01:00
|
|
|
if ($ignore == "") {
|
|
|
|
$temp_name = "temp-".$name;
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
/*
|
|
|
|
* Drop the index if it isn't present in the definition
|
|
|
|
* or the definition differ from current status
|
|
|
|
* and index name doesn't start with "local_"
|
|
|
|
*/
|
|
|
|
foreach ($database[$name]["indexes"] as $indexname => $fieldnames) {
|
2015-12-08 10:35:08 +01:00
|
|
|
$current_index_definition = implode(",",$fieldnames);
|
|
|
|
if (isset($structure["indexes"][$indexname])) {
|
|
|
|
$new_index_definition = implode(",",$structure["indexes"][$indexname]);
|
|
|
|
} else {
|
|
|
|
$new_index_definition = "__NOT_SET__";
|
|
|
|
}
|
|
|
|
if ($current_index_definition != $new_index_definition && substr($indexname, 0, 6) != 'local_') {
|
2014-09-01 23:41:21 +02:00
|
|
|
$sql2=db_drop_index($indexname);
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($sql3 == "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
$sql3 = "ALTER".$ignore." TABLE `".$temp_name."` ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2014-09-01 23:41:21 +02:00
|
|
|
$sql3 .= ", ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-09-01 23:41:21 +02:00
|
|
|
}
|
2015-12-08 10:35:08 +01:00
|
|
|
}
|
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])) {
|
2014-09-04 00:58:52 +02:00
|
|
|
$sql2=db_add_table_field($fieldname, $parameters);
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($sql3 == "") {
|
2017-02-26 09:36:05 +01:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2014-06-04 00:44:58 +02:00
|
|
|
$sql3 .= ", ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
} else {
|
2014-04-28 23:55:47 +02:00
|
|
|
// Compare the field definition
|
2017-04-14 09:58:56 +02:00
|
|
|
$field_definition = $database[$name]["fields"][$fieldname];
|
2017-04-14 14:22:36 +02:00
|
|
|
|
2017-04-30 01:33:02 +02:00
|
|
|
// Remove the relation data that is used for the referential integrity
|
|
|
|
unset($parameters['relation']);
|
|
|
|
|
2017-04-20 07:24:08 +02:00
|
|
|
// We change the collation after the indexes had been changed.
|
|
|
|
// This is done to avoid index length problems.
|
|
|
|
// So here we always ensure that there is no need to change it.
|
|
|
|
unset($parameters['Collation']);
|
|
|
|
unset($field_definition['Collation']);
|
2017-04-14 09:58:56 +02:00
|
|
|
|
|
|
|
$current_field_definition = implode(",", $field_definition);
|
|
|
|
$new_field_definition = implode(",", $parameters);
|
2017-04-14 14:22:36 +02:00
|
|
|
if ($current_field_definition != $new_field_definition) {
|
|
|
|
$sql2 = db_modify_table_field($fieldname, $parameters);
|
2016-12-22 16:50:40 +01:00
|
|
|
if ($sql3 == "") {
|
2017-02-26 09:36:05 +01:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2014-06-04 00:44:58 +02:00
|
|
|
$sql3 .= ", ".$sql2;
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
/*
|
|
|
|
* Create the index if the index don't exists in database
|
|
|
|
* or the definition differ from the current status.
|
|
|
|
* Don't create keys if table is new
|
|
|
|
*/
|
2015-12-08 10:35:08 +01:00
|
|
|
if (!$is_new_table) {
|
|
|
|
foreach ($structure["indexes"] AS $indexname => $fieldnames) {
|
|
|
|
if (isset($database[$name]["indexes"][$indexname])) {
|
|
|
|
$current_index_definition = implode(",",$database[$name]["indexes"][$indexname]);
|
|
|
|
} else {
|
|
|
|
$current_index_definition = "__NOT_SET__";
|
|
|
|
}
|
|
|
|
$new_index_definition = implode(",",$fieldnames);
|
|
|
|
if ($current_index_definition != $new_index_definition) {
|
2017-01-29 18:31:20 +01:00
|
|
|
$sql2 = db_create_index($indexname, $fieldnames);
|
|
|
|
|
|
|
|
// Fetch the "group by" fields for unique indexes
|
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
$group_by = db_group_by($indexname, $fieldnames);
|
|
|
|
}
|
2015-12-08 10:35:08 +01:00
|
|
|
if ($sql2 != "") {
|
2017-04-14 09:58:56 +02:00
|
|
|
if ($sql3 == "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
2017-04-14 09:58:56 +02:00
|
|
|
} else {
|
2015-12-08 10:35:08 +01:00
|
|
|
$sql3 .= ", ".$sql2;
|
2017-04-14 09:58:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($database[$name]["table_status"]["Collation"])) {
|
|
|
|
if ($database[$name]["table_status"]["Collation"] != 'utf8mb4_general_ci') {
|
2017-04-14 14:22:36 +02:00
|
|
|
$sql2 = "DEFAULT COLLATE utf8mb4_general_ci";
|
2017-04-14 09:58:56 +02:00
|
|
|
|
|
|
|
if ($sql3 == "") {
|
|
|
|
$sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
2015-12-08 10:35:08 +01:00
|
|
|
}
|
2014-06-15 10:47:20 +02:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
2017-04-20 07:24:08 +02:00
|
|
|
|
|
|
|
if ($sql3 != "") {
|
|
|
|
$sql3 .= "; ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now have a look at the field collations
|
|
|
|
// Compare the field structure field by field
|
|
|
|
foreach ($structure["fields"] AS $fieldname => $parameters) {
|
|
|
|
// Compare the field definition
|
|
|
|
$field_definition = $database[$name]["fields"][$fieldname];
|
|
|
|
|
|
|
|
// Define the default collation if not given
|
|
|
|
if (!isset($parameters['Collation']) AND !is_null($field_definition['Collation'])) {
|
|
|
|
$parameters['Collation'] = 'utf8mb4_general_ci';
|
|
|
|
} else {
|
|
|
|
$parameters['Collation'] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($field_definition['Collation'] != $parameters['Collation']) {
|
|
|
|
$sql2 = db_modify_table_field($fieldname, $parameters);
|
|
|
|
if (($sql3 == "") OR (substr($sql3, -2, 2) == "; ")) {
|
|
|
|
$sql3 .= "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
|
|
|
|
} else {
|
|
|
|
$sql3 .= ", ".$sql2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-15 10:47:20 +02:00
|
|
|
}
|
2017-04-20 07:24:08 +02:00
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
if ($sql3 != "") {
|
2017-04-20 07:24:08 +02:00
|
|
|
if (substr($sql3, -2, 2) != "; ") {
|
|
|
|
$sql3 .= ";";
|
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
|
2017-05-07 10:53:38 +02:00
|
|
|
$field_list = '';
|
2017-05-07 11:07:34 +02:00
|
|
|
if ($is_unique && $ignore == '') {
|
|
|
|
foreach ($structure['fields'] AS $fieldname => $parameters) {
|
|
|
|
$field_list .= 'ANY_VALUE(`' . $fieldname . '`),';
|
|
|
|
}
|
|
|
|
$field_list = rtrim($field_list, ',');
|
2017-05-07 10:53:38 +02:00
|
|
|
}
|
2017-05-07 11:07:34 +02:00
|
|
|
|
2017-01-16 00:30:43 +01:00
|
|
|
if ($verbose) {
|
|
|
|
// Ensure index conversion to unique removes duplicates
|
|
|
|
if ($is_unique) {
|
2017-01-29 18:31:20 +01:00
|
|
|
if ($ignore != "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
echo "SET session old_alter_table=1;\n";
|
2017-01-29 18:31:20 +01:00
|
|
|
} else {
|
|
|
|
echo "CREATE TABLE `".$temp_name."` LIKE `".$name."`;\n";
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
echo $sql3."\n";
|
|
|
|
|
2017-01-16 00:30:43 +01:00
|
|
|
if ($is_unique) {
|
2017-01-29 18:31:20 +01:00
|
|
|
if ($ignore != "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
echo "SET session old_alter_table=0;\n";
|
2017-01-29 18:31:20 +01:00
|
|
|
} else {
|
2017-05-07 10:53:38 +02:00
|
|
|
echo "INSERT INTO `".$temp_name."` SELECT ".$field_list." FROM `".$name."`".$group_by.";\n";
|
2017-01-29 18:31:20 +01:00
|
|
|
echo "DROP TABLE `".$name."`;\n";
|
|
|
|
echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n";
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
if ($action) {
|
2017-04-14 13:26:47 +02:00
|
|
|
Config::set('system', 'maintenance_reason', sprintf(t('%s: updating %s table.'), dbm::date().' '.date('e'), $name));
|
|
|
|
|
2017-01-16 00:30:43 +01:00
|
|
|
// Ensure index conversion to unique removes duplicates
|
|
|
|
if ($is_unique) {
|
2017-01-29 18:31:20 +01:00
|
|
|
if ($ignore != "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
$db->q("SET session old_alter_table=1;");
|
2017-01-29 18:31:20 +01:00
|
|
|
} else {
|
|
|
|
$r = $db->q("CREATE TABLE `".$temp_name."` LIKE `".$name."`;");
|
|
|
|
if (!dbm::is_result($r)) {
|
2017-04-16 15:21:49 +02:00
|
|
|
$errors .= print_update_error($db, $sql3);
|
2017-01-29 18:31:20 +01:00
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
$r = @$db->q($sql3);
|
2017-04-16 15:21:49 +02:00
|
|
|
if (!dbm::is_result($r)) {
|
|
|
|
$errors .= print_update_error($db, $sql3);
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
if ($is_unique) {
|
2017-01-29 18:31:20 +01:00
|
|
|
if ($ignore != "") {
|
2017-01-16 00:30:43 +01:00
|
|
|
$db->q("SET session old_alter_table=0;");
|
2017-01-29 18:31:20 +01:00
|
|
|
} else {
|
2017-05-07 10:53:38 +02:00
|
|
|
$r = $db->q("INSERT INTO `".$temp_name."` SELECT ".$field_list." FROM `".$name."`".$group_by.";");
|
2017-01-29 18:31:20 +01:00
|
|
|
if (!dbm::is_result($r)) {
|
2017-04-16 15:21:49 +02:00
|
|
|
$errors .= print_update_error($db, $sql3);
|
2017-01-29 18:31:20 +01:00
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
$r = $db->q("DROP TABLE `".$name."`;");
|
|
|
|
if (!dbm::is_result($r)) {
|
2017-04-16 15:21:49 +02:00
|
|
|
$errors .= print_update_error($db, $sql3);
|
2017-01-29 18:31:20 +01:00
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
$r = $db->q("RENAME TABLE `".$temp_name."` TO `".$name."`;");
|
|
|
|
if (!dbm::is_result($r)) {
|
2017-04-16 15:21:49 +02:00
|
|
|
$errors .= print_update_error($db, $sql3);
|
2017-01-29 18:31:20 +01:00
|
|
|
return $errors;
|
|
|
|
}
|
|
|
|
}
|
2017-01-16 00:30:43 +01:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
}
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
2014-06-04 00:44:58 +02:00
|
|
|
|
2017-03-19 14:24:07 +01:00
|
|
|
if ($action) {
|
|
|
|
Config::set('system', 'maintenance', 0);
|
|
|
|
Config::set('system', 'maintenance_reason', '');
|
|
|
|
}
|
2016-10-02 15:52:52 +02:00
|
|
|
|
2017-05-28 10:39:41 +02:00
|
|
|
if ($errors) {
|
|
|
|
Config::set('system', 'dbupdate', DB_UPDATE_FAILED);
|
|
|
|
} else {
|
|
|
|
Config::set('system', 'dbupdate', DB_UPDATE_SUCCESSFUL);
|
|
|
|
}
|
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
return $errors;
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2017-04-14 14:22:36 +02:00
|
|
|
function db_field_command($parameters, $create = true) {
|
2014-04-28 23:55:47 +02:00
|
|
|
$fieldstruct = $parameters["type"];
|
|
|
|
|
2017-04-14 14:22:36 +02:00
|
|
|
if (!is_null($parameters["Collation"])) {
|
|
|
|
$fieldstruct .= " COLLATE ".$parameters["Collation"];
|
2017-04-14 13:26:47 +02:00
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
if ($parameters["not null"])
|
|
|
|
$fieldstruct .= " NOT NULL";
|
|
|
|
|
2017-04-22 23:36:01 +02:00
|
|
|
if (isset($parameters["default"])) {
|
2015-03-25 10:03:17 +01:00
|
|
|
if (strpos(strtolower($parameters["type"]),"int")!==false) {
|
|
|
|
$fieldstruct .= " DEFAULT ".$parameters["default"];
|
|
|
|
} else {
|
|
|
|
$fieldstruct .= " DEFAULT '".$parameters["default"]."'";
|
|
|
|
}
|
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
if ($parameters["extra"] != "")
|
|
|
|
$fieldstruct .= " ".$parameters["extra"];
|
|
|
|
|
2015-12-03 16:39:20 +01:00
|
|
|
/*if (($parameters["primary"] != "") AND $create)
|
|
|
|
$fieldstruct .= " PRIMARY KEY";*/
|
2014-04-28 23:55:47 +02:00
|
|
|
|
|
|
|
return($fieldstruct);
|
|
|
|
}
|
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
function db_create_table($name, $fields, $verbose, $action, $indexes=null) {
|
2014-06-04 00:44:58 +02:00
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
$r = true;
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
$sql = "";
|
2015-12-08 10:35:08 +01:00
|
|
|
|
2015-03-25 10:03:17 +01:00
|
|
|
$sql_rows = array();
|
2015-12-03 16:39:20 +01:00
|
|
|
$primary_keys = array();
|
2017-04-04 19:47:32 +02:00
|
|
|
foreach ($fields AS $fieldname => $field) {
|
2015-03-25 10:03:17 +01:00
|
|
|
$sql_rows[] = "`".dbesc($fieldname)."` ".db_field_command($field);
|
2017-04-22 23:36:01 +02:00
|
|
|
if (x($field,'primary') and $field['primary']!='') {
|
2015-12-03 16:39:20 +01:00
|
|
|
$primary_keys[] = $fieldname;
|
|
|
|
}
|
2015-03-25 09:47:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_null($indexes)) {
|
|
|
|
foreach ($indexes AS $indexname => $fieldnames) {
|
2015-03-25 10:03:17 +01:00
|
|
|
$sql_index = db_create_index($indexname, $fieldnames, "");
|
|
|
|
if (!is_null($sql_index)) $sql_rows[] = $sql_index;
|
2015-03-25 09:47:59 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2015-03-25 10:03:17 +01:00
|
|
|
$sql = implode(",\n\t", $sql_rows);
|
|
|
|
|
2017-04-14 14:22:36 +02:00
|
|
|
$sql = sprintf("CREATE TABLE IF NOT EXISTS `%s` (\n\t", dbesc($name)).$sql."\n) DEFAULT COLLATE utf8mb4_general_ci";
|
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
|
|
|
}
|
|
|
|
|
2017-04-14 14:22:36 +02:00
|
|
|
function db_modify_table_field($fieldname, $parameters) {
|
|
|
|
$sql = sprintf("MODIFY `%s` %s", dbesc($fieldname), db_field_command($parameters, false));
|
2014-06-04 00:44:58 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-03-25 09:47:59 +01:00
|
|
|
function db_create_index($indexname, $fieldnames, $method="ADD") {
|
2014-04-28 23:55:47 +02:00
|
|
|
|
2015-12-08 10:35:08 +01:00
|
|
|
$method = strtoupper(trim($method));
|
|
|
|
if ($method!="" && $method!="ADD") {
|
|
|
|
throw new Exception("Invalid parameter 'method' in db_create_index(): '$method'");
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2016-10-02 05:29:30 +02:00
|
|
|
if ($fieldnames[0] == "UNIQUE") {
|
|
|
|
array_shift($fieldnames);
|
|
|
|
$method .= ' UNIQUE';
|
|
|
|
}
|
|
|
|
|
2014-04-28 23:55:47 +02:00
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "")
|
|
|
|
$names .= ",";
|
|
|
|
|
2016-12-22 16:50:40 +01:00
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
|
2014-04-28 23:55:47 +02:00
|
|
|
$names .= "`".dbesc($matches[1])."`(".intval($matches[2]).")";
|
2016-12-22 16:50:40 +01:00
|
|
|
} else {
|
2014-04-28 23:55:47 +02:00
|
|
|
$names .= "`".dbesc($fieldname)."`";
|
2016-12-22 16:50:40 +01:00
|
|
|
}
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2016-10-01 10:21:37 +02:00
|
|
|
if ($indexname == "PRIMARY") {
|
|
|
|
return sprintf("%s PRIMARY KEY(%s)", $method, $names);
|
|
|
|
}
|
|
|
|
|
2015-03-25 09:47:59 +01:00
|
|
|
|
|
|
|
$sql = sprintf("%s INDEX `%s` (%s)", $method, dbesc($indexname), $names);
|
2014-06-04 00:44:58 +02:00
|
|
|
return($sql);
|
2014-04-28 23:55:47 +02:00
|
|
|
}
|
|
|
|
|
2017-01-29 18:31:20 +01:00
|
|
|
function db_group_by($indexname, $fieldnames) {
|
|
|
|
|
|
|
|
if ($fieldnames[0] != "UNIQUE") {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
array_shift($fieldnames);
|
|
|
|
|
|
|
|
$names = "";
|
|
|
|
foreach ($fieldnames AS $fieldname) {
|
|
|
|
if ($names != "")
|
|
|
|
$names .= ",";
|
|
|
|
|
|
|
|
if (preg_match('|(.+)\((\d+)\)|', $fieldname, $matches)) {
|
|
|
|
$names .= "`".dbesc($matches[1])."`";
|
|
|
|
} else {
|
|
|
|
$names .= "`".dbesc($fieldname)."`";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = sprintf(" GROUP BY %s", $names);
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
2017-04-14 09:58:56 +02:00
|
|
|
function db_definition() {
|
2014-04-28 23:55:47 +02:00
|
|
|
|
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"),
|
2017-01-18 22:45:32 +01:00
|
|
|
"name" => array("type" => "varchar(190)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-01-18 22:45:32 +01:00
|
|
|
"name" => array("UNIQUE", "name"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
|
|
|
|
"filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"filetype" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
|
|
|
|
"filesize" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"data" => array("type" => "longblob", "not null" => "1"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2017-01-16 23:11:35 +01:00
|
|
|
"allow_cid" => array("type" => "mediumtext"),
|
2017-01-16 23:15:04 +01:00
|
|
|
"allow_gid" => array("type" => "mediumtext"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => "", "relation" => array("clients" => "client_id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
|
|
|
|
"expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"scope" => array("type" => "varchar(250)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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(
|
2016-12-25 22:04:10 +01:00
|
|
|
"k" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
|
2017-01-13 23:13:52 +01:00
|
|
|
"v" => array("type" => "mediumtext"),
|
2015-08-24 17:24:14 +02:00
|
|
|
"expire_mode" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"updated" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
2016-12-25 22:04:10 +01:00
|
|
|
"PRIMARY" => array("k"),
|
2016-10-23 23:59:40 +02:00
|
|
|
"expire_mode_updated" => array("expire_mode", "updated"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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-11-09 13:29:27 +01:00
|
|
|
"challenge" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"last_update" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"pw" => array("type" => "varchar(20)", "not null" => "1", "default" => ""),
|
|
|
|
"redirect_uri" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
|
2014-04-29 12:35:24 +02:00
|
|
|
"name" => array("type" => "text"),
|
|
|
|
"icon" => array("type" => "text"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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"),
|
2016-12-25 22:04:10 +01:00
|
|
|
"cat" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
|
|
|
"k" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
2017-01-13 23:13:52 +01:00
|
|
|
"v" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2016-12-25 22:04:10 +01:00
|
|
|
"cat_k" => array("UNIQUE", "cat", "k"),
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02: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-11-09 13:29:27 +01:00
|
|
|
"network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2015-01-05 08:03:29 +01:00
|
|
|
"location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"about" => array("type" => "text"),
|
|
|
|
"keywords" => array("type" => "text"),
|
2015-01-25 13:19:37 +01:00
|
|
|
"gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2016-09-25 17:28:00 +02:00
|
|
|
"xmpp" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"attag" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-01-28 01:26:19 +01:00
|
|
|
"avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"photo" => array("type" => "text"),
|
|
|
|
"thumb" => array("type" => "text"),
|
|
|
|
"micro" => array("type" => "text"),
|
|
|
|
"site-pubkey" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"issued-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"dfrn-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-01-05 00:12:28 +01:00
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"pubkey" => array("type" => "text"),
|
|
|
|
"prvkey" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"request" => array("type" => "text"),
|
|
|
|
"notify" => array("type" => "text"),
|
|
|
|
"poll" => array("type" => "text"),
|
|
|
|
"confirm" => array("type" => "text"),
|
|
|
|
"poco" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"hub-verify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"last-update" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"success_update" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"failure_update" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"name-date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"uri-date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"avatar-date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"term-date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"last-item" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-11-09 13:29:27 +01:00
|
|
|
"priority" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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"),
|
2017-04-12 23:09:22 +02:00
|
|
|
"contact-type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"reason" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"closeness" => array("type" => "tinyint(2)", "not null" => "1", "default" => "99"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"info" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"profile-id" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"bdyear" => array("type" => "varchar(4)", "not null" => "1", "default" => ""),
|
2017-04-11 23:00:45 +02:00
|
|
|
"bd" => array("type" => "date", "not null" => "1", "default" => "0001-01-01"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"notify_new_posts" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"fetch_further_information" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2017-01-13 23:13:52 +01:00
|
|
|
"ffi_keyword_blacklist" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_name" => array("uid", "name(190)"),
|
2017-01-13 08:46:47 +01:00
|
|
|
"self_uid" => array("self", "uid"),
|
2017-01-05 23:23:00 +01:00
|
|
|
"alias_uid" => array("alias(32)", "uid"),
|
2017-01-13 08:46:47 +01:00
|
|
|
"pending_uid" => array("pending", "uid"),
|
|
|
|
"blocked_uid" => array("blocked", "uid"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_rel_network_poll" => array("uid", "rel", "network(4)", "poll(64)", "archive"),
|
|
|
|
"uid_network_batch" => array("uid", "network(4)", "batch(64)"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"addr_uid" => array("addr(32)", "uid"),
|
2017-01-05 00:28:51 +01:00
|
|
|
"nurl_uid" => array("nurl(32)", "uid"),
|
|
|
|
"nick_uid" => array("nick(32)", "uid"),
|
2017-01-14 22:36:34 +01:00
|
|
|
"dfrn-id" => array("dfrn-id"),
|
|
|
|
"issued-id" => array("issued-id"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-05-17 21:25:30 +02:00
|
|
|
"guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-01-13 23:13:52 +01:00
|
|
|
"recips" => array("type" => "text"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"creator" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"updated" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2017-01-13 23:13:52 +01:00
|
|
|
"subject" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
)
|
|
|
|
);
|
2017-04-22 22:46:40 +02:00
|
|
|
$database["conversation"] = array(
|
|
|
|
"fields" => array(
|
|
|
|
"item-uri" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
|
|
|
|
"reply-to-uri" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
|
|
|
"conversation-uri" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
2017-04-27 22:38:46 +02:00
|
|
|
"conversation-href" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
2017-04-22 22:46:40 +02:00
|
|
|
"protocol" => array("type" => "tinyint(1) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"source" => array("type" => "mediumtext"),
|
2017-04-26 23:16:25 +02:00
|
|
|
"received" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2017-04-22 22:46:40 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
2017-04-28 07:50:27 +02:00
|
|
|
"PRIMARY" => array("item-uri"),
|
2017-04-22 22:46:40 +02:00
|
|
|
"conversation-uri" => array("conversation-uri"),
|
|
|
|
)
|
|
|
|
);
|
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"),
|
2016-12-30 04:31:38 +01:00
|
|
|
"guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"start" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"finish" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2016-09-03 17:06:42 +02:00
|
|
|
"summary" => array("type" => "text"),
|
|
|
|
"desc" => array("type" => "text"),
|
|
|
|
"location" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-01-16 23:15:04 +01:00
|
|
|
"allow_cid" => array("type" => "mediumtext"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-05 23:23:00 +01:00
|
|
|
"uid_start" => array("uid", "start"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2016-07-10 12:09:58 +02:00
|
|
|
"guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"batch" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"notify" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"poll" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"confirm" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"priority" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
|
|
|
"alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"pubkey" => array("type" => "text"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"updated" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"addr" => array("addr(32)"),
|
2017-05-05 23:55:19 +02:00
|
|
|
"url" => array("UNIQUE", "url(190)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
|
|
|
"fid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("fcontact" => "id")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"posturl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"key" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"server" => array("server(32)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"request" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"note" => array("type" => "text"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("gcontact" => "id")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2015-07-21 00:05:44 +02:00
|
|
|
"nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"updated" => array("type" => "datetime", "default" => NULL_DATE),
|
|
|
|
"last_contact" => array("type" => "datetime", "default" => NULL_DATE),
|
|
|
|
"last_failure" => array("type" => "datetime", "default" => NULL_DATE),
|
2015-01-25 02:29:46 +01:00
|
|
|
"location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"about" => array("type" => "text"),
|
|
|
|
"keywords" => array("type" => "text"),
|
2015-01-25 13:19:37 +01:00
|
|
|
"gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2017-04-11 23:00:45 +02:00
|
|
|
"birthday" => array("type" => "varchar(32)", "not null" => "1", "default" => "0001-01-01"),
|
2015-07-30 16:30:18 +02:00
|
|
|
"community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2016-10-04 05:48:01 +02:00
|
|
|
"contact-type" => array("type" => "tinyint(1)", "not null" => "1", "default" => "-1"),
|
2016-01-06 14:13:59 +01:00
|
|
|
"hide" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"nsfw" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2015-01-08 07:59:20 +01:00
|
|
|
"network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2015-11-05 08:37:00 +01:00
|
|
|
"addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"notify" => array("type" => "text"),
|
2016-01-07 23:43:16 +01:00
|
|
|
"alias" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2015-02-15 10:52:45 +01:00
|
|
|
"generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
|
2015-07-18 20:15:21 +02:00
|
|
|
"server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-05-05 23:55:19 +02:00
|
|
|
"nurl" => array("UNIQUE", "nurl(190)"),
|
2017-01-20 14:30:06 +01:00
|
|
|
"name" => array("name(64)"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"nick" => array("nick(32)"),
|
2017-01-20 14:30:06 +01:00
|
|
|
"addr" => array("addr(64)"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"hide_network_updated" => array("hide", "network(4)", "updated"),
|
2015-07-24 07:23:57 +02:00
|
|
|
"updated" => array("updated"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"gcid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("gcontact" => "id")),
|
|
|
|
"zcid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("gcontact" => "id")),
|
2017-02-28 00:37:15 +01:00
|
|
|
"updated" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-05 23:23:00 +01:00
|
|
|
"cid_uid_gcid_zcid" => array("UNIQUE", "cid","uid","gcid","zcid"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"gcid" => array("gcid"),
|
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
"visible" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"deleted" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"gid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("group" => "id")),
|
|
|
|
"contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-14 22:36:34 +01:00
|
|
|
"contactid" => array("contact-id"),
|
2017-01-08 21:11:15 +01:00
|
|
|
"gid_contactid" => array("gid", "contact-id"),
|
2017-01-07 14:52:30 +01:00
|
|
|
"uid_gid_contactid" => array("UNIQUE", "uid", "gid", "contact-id"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
2015-07-18 20:15:21 +02:00
|
|
|
$database["gserver"] = array(
|
|
|
|
"fields" => array(
|
2015-07-23 08:35:45 +02:00
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2015-07-18 20:15:21 +02:00
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"version" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"site_name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"info" => array("type" => "text"),
|
2015-07-18 20:15:21 +02:00
|
|
|
"register_policy" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
"poco" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"noscrape" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
|
|
|
"platform" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"last_poco_query" => array("type" => "datetime", "default" => NULL_DATE),
|
|
|
|
"last_contact" => array("type" => "datetime", "default" => NULL_DATE),
|
|
|
|
"last_failure" => array("type" => "datetime", "default" => NULL_DATE),
|
2015-07-18 20:15:21 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
2015-07-23 08:35:45 +02:00
|
|
|
"PRIMARY" => array("id"),
|
2017-05-05 23:55:19 +02:00
|
|
|
"nurl" => array("UNIQUE", "nurl(190)"),
|
2015-07-18 20:15:21 +02:00
|
|
|
)
|
|
|
|
);
|
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-11-09 13:29:27 +01:00
|
|
|
"hook" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"file" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"function" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
"priority" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-18 22:45:32 +01:00
|
|
|
"hook_file_function" => array("UNIQUE", "hook(50)","file(80)","function(60)"),
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"fid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("fcontact" => "id")),
|
|
|
|
"contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"knowyou" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"duplex" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"note" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"datetime" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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(
|
2017-04-30 22:19:47 +02:00
|
|
|
"id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "relation" => array("thread" => "iid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"contact-id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
|
|
|
"gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("gcontact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-04-30 21:54:41 +02:00
|
|
|
"parent" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"extid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"thr-parent" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"commented" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"received" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"changed" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2017-04-30 01:33:02 +02:00
|
|
|
"owner-id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"owner-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"owner-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"owner-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"author-id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"author-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"author-link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"author-avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"body" => array("type" => "mediumtext"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"app" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"object-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"object" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"target-type" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"target" => array("type" => "text"),
|
|
|
|
"postopts" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"plink" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"event-id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("event" => "id")),
|
2016-09-03 17:06:42 +02:00
|
|
|
"tag" => array("type" => "mediumtext"),
|
|
|
|
"attach" => array("type" => "mediumtext"),
|
|
|
|
"inform" => array("type" => "mediumtext"),
|
|
|
|
"file" => array("type" => "mediumtext"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"coord" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"allow_cid" => array("type" => "mediumtext"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2015-03-07 21:24:39 +01:00
|
|
|
"rendered-hash" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"rendered-html" => array("type" => "mediumtext"),
|
2015-03-09 00:45:53 +01:00
|
|
|
"global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
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"),
|
2017-02-01 22:08:13 +01:00
|
|
|
"uid_contactid_id" => array("uid","contact-id","id"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"uid_created" => array("uid","created"),
|
2016-06-06 22:57:27 +02:00
|
|
|
"uid_unseen_contactid" => array("uid","unseen","contact-id"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_network_received" => array("uid","network(4)","received"),
|
|
|
|
"uid_network_commented" => array("uid","network(4)","commented"),
|
|
|
|
"uid_thrparent" => array("uid","thr-parent(190)"),
|
|
|
|
"uid_parenturi" => array("uid","parent-uri(190)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"uid_contactid_created" => array("uid","contact-id","created"),
|
2016-06-23 21:15:54 +02:00
|
|
|
"authorid_created" => array("author-id","created"),
|
2017-05-01 19:42:37 +02:00
|
|
|
"ownerid" => array("owner-id"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_uri" => array("uid", "uri(190)"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"resource-id" => array("resource-id"),
|
2017-01-14 01:49:41 +01:00
|
|
|
"contactid_allowcid_allowpid_denycid_denygid" => array("contact-id","allow_cid(10)","allow_gid(10)","deny_cid(10)","deny_gid(10)"), //
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_type_changed" => array("uid","type(190)","changed"),
|
|
|
|
"contactid_verb" => array("contact-id","verb(190)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"deleted_changed" => array("deleted","changed"),
|
|
|
|
"uid_wall_changed" => array("uid","wall","changed"),
|
|
|
|
"uid_eventid" => array("uid","event-id"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_authorlink" => array("uid","author-link(190)"),
|
|
|
|
"uid_ownerlink" => array("uid","owner-link(190)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"iid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"sid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"service" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"uid" => array("uid"),
|
|
|
|
"sid" => array("sid"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"service" => array("service(32)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
"locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2017-06-04 09:26:21 +02:00
|
|
|
"pid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2017-05-17 21:25:30 +02:00
|
|
|
"guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"from-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"from-photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"from-url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"contact-id" => array("type" => "varchar(255)", "not null" => "1", "default" => "", "relation" => array("contact" => "id")),
|
|
|
|
"convid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("conv" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"body" => array("type" => "mediumtext"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"reply" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"replied" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"unknown" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"parent-uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-05 23:23:00 +01:00
|
|
|
"uid_seen" => array("uid", "seen"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"convid" => array("convid"),
|
2017-01-05 14:16:27 +01:00
|
|
|
"uri" => array("uri(64)"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"parent-uri" => array("parent-uri(64)"),
|
2017-05-07 10:12:36 +02:00
|
|
|
"contactid" => array("contact-id"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"server" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"port" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"ssltype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
|
|
|
|
"mailbox" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"user" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"pass" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"reply_to" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"action" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"movetofolder" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
"pubmail" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"last_check" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02: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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"mid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-14 01:49:41 +01:00
|
|
|
"uid_mid" => array("UNIQUE", "uid","mid"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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-11-09 13:29:27 +01:00
|
|
|
"hash" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
|
|
|
|
"type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2016-09-03 17:06:42 +02:00
|
|
|
"msg" => array("type" => "mediumtext"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"link" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"iid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
|
|
|
"parent" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
2014-04-28 23:55:47 +02:00
|
|
|
"seen" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"verb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"otype" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
|
2016-10-28 12:28:16 +02:00
|
|
|
"name_cache" => array("type" => "tinytext"),
|
|
|
|
"msg_cache" => array("type" => "mediumtext")
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-14 22:36:34 +01:00
|
|
|
"hash_uid" => array("hash", "uid"),
|
2017-01-14 01:49:41 +01:00
|
|
|
"seen_uid_date" => array("seen", "uid", "date"),
|
2017-01-05 08:30:10 +01:00
|
|
|
"uid_date" => array("uid", "date"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"uid_type_link" => array("uid", "type", "link(190)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"notify-id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("notify" => "id")),
|
|
|
|
"master-parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
2014-04-28 23:55:47 +02:00
|
|
|
"parent-item" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2017-04-30 21:54:41 +02:00
|
|
|
"receiver-uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
2016-01-14 23:59:51 +01:00
|
|
|
$database["oembed"] = array(
|
|
|
|
"fields" => array(
|
2016-12-25 22:04:10 +01:00
|
|
|
"url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
|
2017-01-13 23:13:52 +01:00
|
|
|
"content" => array("type" => "mediumtext"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2016-01-14 23:59:51 +01:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
2016-12-25 22:04:10 +01:00
|
|
|
"PRIMARY" => array("url"),
|
2016-01-15 00:58:57 +01:00
|
|
|
"created" => array("created"),
|
2016-01-14 23:59:51 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$database["parsed_url"] = array(
|
|
|
|
"fields" => array(
|
2016-12-25 22:04:10 +01:00
|
|
|
"url" => array("type" => "varbinary(255)", "not null" => "1", "primary" => "1"),
|
2016-01-14 23:59:51 +01:00
|
|
|
"guessing" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
|
|
|
|
"oembed" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0", "primary" => "1"),
|
2017-01-13 23:13:52 +01:00
|
|
|
"content" => array("type" => "mediumtext"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2016-01-14 23:59:51 +01:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
2016-12-25 22:04:10 +01:00
|
|
|
"PRIMARY" => array("url", "guessing", "oembed"),
|
2016-01-15 00:58:57 +01:00
|
|
|
"created" => array("created"),
|
2016-01-14 23:59:51 +01:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2016-12-25 22:04:10 +01:00
|
|
|
"cat" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
|
|
|
"k" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"v" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2016-12-25 22:04:10 +01:00
|
|
|
"uid_cat_k" => array("UNIQUE", "uid", "cat", "k"),
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"contact-id" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
|
|
|
|
"resource-id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-11-09 13:29:27 +01:00
|
|
|
"title" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"desc" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"album" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"filename" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-06-04 00:44:58 +02:00
|
|
|
"type" => array("type" => "varchar(128)", "not null" => "1", "default" => "image/jpeg"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"height" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
|
|
|
|
"width" => array("type" => "smallint(6)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"datasize" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"data" => array("type" => "mediumblob", "not null" => "1"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"scale" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"profile" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"allow_cid" => array("type" => "mediumtext"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-05-07 10:12:36 +02:00
|
|
|
"contactid" => array("contact-id"),
|
2016-10-17 20:38:51 +02:00
|
|
|
"uid_contactid" => array("uid", "contact-id"),
|
2016-10-21 20:25:21 +02:00
|
|
|
"uid_profile" => array("uid", "profile"),
|
2017-01-13 08:46:47 +01:00
|
|
|
"uid_album_scale_created" => array("uid", "album(32)", "scale", "created"),
|
2017-01-07 14:52:30 +01:00
|
|
|
"uid_album_resource-id_created" => array("uid", "album(32)", "resource-id(64)", "created"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"resource-id" => array("resource-id(64)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2017-01-13 23:13:52 +01:00
|
|
|
"q0" => array("type" => "text"),
|
|
|
|
"q1" => array("type" => "text"),
|
|
|
|
"q2" => array("type" => "text"),
|
|
|
|
"q3" => array("type" => "text"),
|
|
|
|
"q4" => array("type" => "text"),
|
|
|
|
"q5" => array("type" => "text"),
|
|
|
|
"q6" => array("type" => "text"),
|
|
|
|
"q7" => array("type" => "text"),
|
|
|
|
"q8" => array("type" => "text"),
|
|
|
|
"q9" => array("type" => "text"),
|
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["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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"poll_id" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("poll" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"choice" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-16 23:11:35 +01:00
|
|
|
"poll_id" => array("poll_id"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"choice" => array("choice"),
|
|
|
|
)
|
|
|
|
);
|
2016-09-09 22:33:54 +02:00
|
|
|
$database["process"] = array(
|
|
|
|
"fields" => array(
|
|
|
|
"pid" => array("type" => "int(10) unsigned", "not null" => "1", "primary" => "1"),
|
2016-12-25 22:04:10 +01:00
|
|
|
"command" => array("type" => "varbinary(32)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2016-09-09 22:33:54 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("pid"),
|
|
|
|
"command" => array("command"),
|
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"profile-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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-11-09 13:29:27 +01:00
|
|
|
"name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"pdesc" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-04-11 23:00:45 +02:00
|
|
|
"dob" => array("type" => "varchar(32)", "not null" => "1", "default" => "0001-01-01"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"address" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"locality" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"region" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"postal-code" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
|
|
|
"country-name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"hometown" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
|
|
|
"marital" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"with" => array("type" => "text"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"howlong" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-11-09 13:29:27 +01:00
|
|
|
"sexual" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"politic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"religion" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"pub_keywords" => array("type" => "text"),
|
|
|
|
"prv_keywords" => array("type" => "text"),
|
|
|
|
"likes" => array("type" => "text"),
|
|
|
|
"dislikes" => array("type" => "text"),
|
|
|
|
"about" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"summary" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"music" => array("type" => "text"),
|
|
|
|
"book" => array("type" => "text"),
|
|
|
|
"tv" => array("type" => "text"),
|
|
|
|
"film" => array("type" => "text"),
|
|
|
|
"interest" => array("type" => "text"),
|
|
|
|
"romance" => array("type" => "text"),
|
|
|
|
"work" => array("type" => "text"),
|
|
|
|
"education" => array("type" => "text"),
|
|
|
|
"contact" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"homepage" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-25 17:28:00 +02:00
|
|
|
"xmpp" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-11-09 13:29:27 +01:00
|
|
|
"photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"thumb" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-01-14 22:36:34 +01:00
|
|
|
"uid_is-default" => array("uid", "is-default"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"cid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"dfrn_id" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"sec" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"expire" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"callback_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"topic" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"push" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"last_update" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-11-09 13:29:27 +01:00
|
|
|
"secret" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"cid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"last" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2016-09-03 17:06:42 +02:00
|
|
|
"content" => array("type" => "mediumtext"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"batch" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"cid" => array("cid"),
|
|
|
|
"created" => array("created"),
|
|
|
|
"last" => array("last"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"network" => array("network"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"hash" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
|
2016-11-19 18:22:49 +01:00
|
|
|
"note" => array("type" => "text"),
|
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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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["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"),
|
2016-12-25 22:04:10 +01:00
|
|
|
"sid" => array("type" => "varbinary(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"data" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"expire" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"sid" => array("sid(64)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
2016-09-03 17:06:42 +02:00
|
|
|
"signed_text" => array("type" => "mediumtext"),
|
|
|
|
"signature" => array("type" => "text"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"signer" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
"iid" => array("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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
"spam" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"ham" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02: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"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"oid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("item" => "id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"otype" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"type" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
|
|
|
|
"term" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2015-03-07 21:24:39 +01:00
|
|
|
"guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"received" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2015-03-08 03:27:14 +01:00
|
|
|
"global" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"aid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("tid"),
|
2017-04-21 23:26:05 +02:00
|
|
|
"oid_otype_type_term" => array("oid","otype","type","term(32)"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"uid_otype_type_term_global_created" => array("uid","otype","type","term(32)","global","created"),
|
|
|
|
"uid_otype_type_url" => array("uid","otype","type","url(64)"),
|
|
|
|
"guid" => array("guid(64)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
2014-06-04 00:44:58 +02:00
|
|
|
$database["thread"] = array(
|
2014-04-28 23:55:47 +02:00
|
|
|
"fields" => array(
|
2017-04-30 01:33:02 +02:00
|
|
|
"iid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "primary" => "1", "relation" => array("item" => "id")),
|
|
|
|
"uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
|
|
|
"contact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
|
|
|
"gcontact-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("gcontact" => "id")),
|
|
|
|
"owner-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
|
|
|
"author-id" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0", "relation" => array("contact" => "id")),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"edited" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"commented" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"received" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"changed" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-04-28 23:55:47 +02: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"),
|
2014-09-04 00:58:52 +02:00
|
|
|
"ignored" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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-11-09 13:29:27 +01:00
|
|
|
"network" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("iid"),
|
|
|
|
"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"),
|
2017-05-01 19:42:37 +02:00
|
|
|
"contactid" => array("contact-id"),
|
|
|
|
"ownerid" => array("owner-id"),
|
|
|
|
"authorid" => array("author-id"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"uid_created" => array("uid","created"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"uid_commented" => array("uid","commented"),
|
2017-03-02 06:46:44 +01:00
|
|
|
"uid_wall_created" => array("uid","wall","created"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"secret" => array("type" => "text"),
|
2017-04-30 01:33:02 +02:00
|
|
|
"client_id" => array("type" => "varchar(20)", "not null" => "1", "default" => "", "relation" => array("clients" => "client_id")),
|
2014-11-09 13:29:27 +01:00
|
|
|
"expires" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
|
|
|
"scope" => array("type" => "varchar(200)", "not null" => "1", "default" => ""),
|
2017-04-30 01:33:02 +02:00
|
|
|
"uid" => array("type" => "int(11)", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
|
|
|
)
|
|
|
|
);
|
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-11-09 13:29:27 +01:00
|
|
|
"guid" => array("type" => "varchar(64)", "not null" => "1", "default" => ""),
|
|
|
|
"username" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"nickname" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"email" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"openid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
|
|
|
"timezone" => array("type" => "varchar(128)", "not null" => "1", "default" => ""),
|
2014-06-04 00:44:58 +02:00
|
|
|
"language" => array("type" => "varchar(32)", "not null" => "1", "default" => "en"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"register_date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"login_date" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-11-09 13:29:27 +01:00
|
|
|
"default-location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
"allow_location" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"theme" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
2016-09-03 17:06:42 +02:00
|
|
|
"pubkey" => array("type" => "text"),
|
|
|
|
"prvkey" => array("type" => "text"),
|
|
|
|
"spubkey" => array("type" => "text"),
|
|
|
|
"sprvkey" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"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"),
|
2016-09-25 22:37:27 +02:00
|
|
|
"account-type" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
|
2014-04-28 23:55:47 +02:00
|
|
|
"prvnets" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
|
2014-11-09 13:29:27 +01:00
|
|
|
"pwdreset" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
|
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"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"account_expires_on" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
|
|
|
"expire_notification_sent" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2014-11-09 13:29:27 +01:00
|
|
|
"service_class" => array("type" => "varchar(32)", "not null" => "1", "default" => ""),
|
2014-04-28 23:55:47 +02:00
|
|
|
"def_gid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2017-01-16 23:15:04 +01:00
|
|
|
"allow_cid" => array("type" => "mediumtext"),
|
|
|
|
"allow_gid" => array("type" => "mediumtext"),
|
|
|
|
"deny_cid" => array("type" => "mediumtext"),
|
|
|
|
"deny_gid" => array("type" => "mediumtext"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"openidserver" => array("type" => "text"),
|
2014-04-28 23:55:47 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("uid"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"nickname" => array("nickname(32)"),
|
2014-04-28 23:55:47 +02:00
|
|
|
)
|
|
|
|
);
|
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"),
|
2017-01-04 20:13:50 +01:00
|
|
|
"username" => array("username(32)"),
|
2014-04-29 13:19:44 +02:00
|
|
|
)
|
|
|
|
);
|
2015-09-09 22:42:31 +02:00
|
|
|
$database["workerqueue"] = array(
|
|
|
|
"fields" => array(
|
|
|
|
"id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
|
2016-09-03 17:06:42 +02:00
|
|
|
"parameter" => array("type" => "text"),
|
2015-09-09 22:42:31 +02:00
|
|
|
"priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"created" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2015-09-09 22:42:31 +02:00
|
|
|
"pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
|
2017-02-28 00:37:15 +01:00
|
|
|
"executed" => array("type" => "datetime", "not null" => "1", "default" => NULL_DATE),
|
2015-09-09 22:42:31 +02:00
|
|
|
),
|
|
|
|
"indexes" => array(
|
|
|
|
"PRIMARY" => array("id"),
|
2017-06-03 21:46:19 +02:00
|
|
|
"pid" => array("pid"),
|
2017-06-03 09:25:01 +02:00
|
|
|
"priority_created" => array("priority", "created"),
|
2015-09-09 22:42:31 +02:00
|
|
|
)
|
|
|
|
);
|
2014-04-29 13:19:44 +02:00
|
|
|
|
2014-06-04 00:44:58 +02:00
|
|
|
return($database);
|
2014-04-29 13:19:44 +02:00
|
|
|
}
|
2014-09-07 17:28:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* run from command line
|
|
|
|
*/
|
|
|
|
function dbstructure_run(&$argv, &$argc) {
|
|
|
|
global $a, $db;
|
|
|
|
|
2017-04-22 23:36:01 +02:00
|
|
|
if (is_null($a)) {
|
2017-05-03 04:42:42 +02:00
|
|
|
$a = new App(dirname(__DIR__));
|
2014-09-07 17:28:38 +02:00
|
|
|
}
|
|
|
|
|
2017-04-04 19:47:32 +02:00
|
|
|
if (is_null($db)) {
|
2014-09-07 17:28:38 +02:00
|
|
|
@include(".htconfig.php");
|
|
|
|
require_once("include/dba.php");
|
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
}
|
|
|
|
|
2017-04-04 19:47:32 +02:00
|
|
|
if ($argc == 2) {
|
2015-03-25 09:47:59 +01:00
|
|
|
switch ($argv[1]) {
|
2016-10-02 05:29:30 +02:00
|
|
|
case "dryrun":
|
|
|
|
update_structure(true, false);
|
|
|
|
return;
|
2015-03-25 09:47:59 +01:00
|
|
|
case "update":
|
|
|
|
update_structure(true, true);
|
2016-10-04 05:48:01 +02:00
|
|
|
|
|
|
|
$build = get_config('system','build');
|
|
|
|
if (!x($build)) {
|
2017-04-04 19:47:32 +02:00
|
|
|
set_config('system', 'build', DB_UPDATE_VERSION);
|
2016-10-04 05:48:01 +02:00
|
|
|
$build = DB_UPDATE_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
$stored = intval($build);
|
|
|
|
$current = intval(DB_UPDATE_VERSION);
|
|
|
|
|
|
|
|
// run any left update_nnnn functions in update.php
|
2017-04-04 19:47:32 +02:00
|
|
|
for ($x = $stored; $x < $current; $x ++) {
|
2016-10-04 05:48:01 +02:00
|
|
|
$r = run_update_function($x);
|
2017-04-04 19:47:32 +02:00
|
|
|
if (!$r) {
|
|
|
|
break;
|
|
|
|
}
|
2016-10-04 05:48:01 +02:00
|
|
|
}
|
|
|
|
|
2016-08-27 19:50:19 +02:00
|
|
|
set_config('system','build',DB_UPDATE_VERSION);
|
2015-03-25 09:47:59 +01:00
|
|
|
return;
|
|
|
|
case "dumpsql":
|
2017-04-14 09:58:56 +02:00
|
|
|
print_structure(db_definition());
|
2015-03-25 09:47:59 +01:00
|
|
|
return;
|
2017-04-22 23:55:16 +02:00
|
|
|
case "toinnodb":
|
2017-04-22 23:36:01 +02:00
|
|
|
convert_to_innodb();
|
|
|
|
return;
|
2015-03-25 09:47:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// print help
|
|
|
|
echo $argv[0]." <command>\n";
|
|
|
|
echo "\n";
|
2016-10-04 01:06:47 +02:00
|
|
|
echo "Commands:\n";
|
|
|
|
echo "dryrun show database update schema queries without running them\n";
|
2015-03-25 09:47:59 +01:00
|
|
|
echo "update update database schema\n";
|
|
|
|
echo "dumpsql dump database schema\n";
|
2017-04-30 01:33:02 +02:00
|
|
|
echo "toinnodb convert all tables from MyISAM to InnoDB\n";
|
2015-03-25 09:47:59 +01:00
|
|
|
return;
|
|
|
|
|
2014-09-07 17:28:38 +02:00
|
|
|
}
|
|
|
|
|
2017-04-04 19:47:32 +02:00
|
|
|
if (array_search(__FILE__,get_included_files())===0) {
|
2015-01-04 13:24:16 +01:00
|
|
|
dbstructure_run($_SERVER["argv"],$_SERVER["argc"]);
|
2014-09-07 17:28:38 +02:00
|
|
|
killme();
|
|
|
|
}
|