Merge pull request #8029 from MrPetovan/bug/fatal-errors
Fix capitalization of table definition key in DBStructure
This commit is contained in:
commit
ff21b8acfd
|
@ -52,7 +52,7 @@ class DBStructure
|
|||
}
|
||||
|
||||
foreach ($tables AS $table) {
|
||||
$sql = "ALTER TABLE " . DBA::quoteIdentifier($table['TABLE_NAME']) . " engine=InnoDB;";
|
||||
$sql = "ALTER TABLE " . DBA::quoteIdentifier($table['table_name']) . " engine=InnoDB;";
|
||||
echo $sql . "\n";
|
||||
|
||||
$result = DBA::e($sql);
|
||||
|
|
Loading…
Reference in a new issue