diff --git a/docs/upgrades/upgrade_7.5.5-7.5.6.pl b/docs/upgrades/upgrade_7.5.5-7.5.6.pl index 2a35f0b54..55133b6ec 100644 --- a/docs/upgrades/upgrade_7.5.5-7.5.6.pl +++ b/docs/upgrades/upgrade_7.5.5-7.5.6.pl @@ -91,6 +91,9 @@ sub repairDBCharset { } } + unshift @stmts, "ALTER TABLE `assetIndex` DROP INDEX `keywords`"; + push @stmts, "ALTER TABLE `assetIndex` ADD FULLTEXT INDEX `keywords` (`keywords`)"; + for my $stmt (@stmts) { $dbh->do($stmt); }