We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b77fd commit e49233aCopy full SHA for e49233a
1 file changed
lib/private/Repair/Collation.php
@@ -90,11 +90,6 @@ public function run(IOutput $output) {
90
}
91
92
$output->info("Change collation for $table ...");
93
- if ($characterSet === 'utf8mb4') {
94
- // need to set row compression first
95
- $query = $this->connection->prepare('ALTER TABLE `' . $table . '` ROW_FORMAT=COMPRESSED;');
96
- $query->execute();
97
- }
98
$query = $this->connection->prepare('ALTER TABLE `' . $table . '` CONVERT TO CHARACTER SET ' . $characterSet . ' COLLATE ' . $characterSet . '_bin;');
99
try {
100
$query->execute();
0 commit comments