From: Michael Date: Sun, 26 Sep 2021 17:13:26 +0000 (+0000) Subject: Issue 10768: Avoid MySQL problems when upgrading both index and structure X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f26226229a45af4053055b8a5ea7aa0f7aa33e0c;p=friendica.git Issue 10768: Avoid MySQL problems when upgrading both index and structure --- diff --git a/src/Database/DBStructure.php b/src/Database/DBStructure.php index d7f1179d02..f652272a47 100644 --- a/src/Database/DBStructure.php +++ b/src/Database/DBStructure.php @@ -673,6 +673,11 @@ class DBStructure $current_field_definition = DBA::cleanQuery(implode(",", $field_definition)); $new_field_definition = DBA::cleanQuery(implode(",", $parameters)); if ($current_field_definition != $new_field_definition) { + // When the field structure changes then we will not perform the special index handling for MySQL. + // See issue #10768 + $is_unique = false; + $temp_name = $name; + $sql2 = self::modifyTableField($fieldname, $parameters); if ($sql3 == "") { $sql3 = "ALTER" . $ignore . " TABLE `" . $temp_name . "` " . $sql2;