FIX Remove reference to removed method parseIndexSpec

Fixes #6968
This commit is contained in:
Damian Mooyman 2017-06-16 11:20:52 +12:00
parent 65e2347342
commit 957d238caa
No known key found for this signature in database
GPG Key ID: 78B823A10DE27D1A
1 changed files with 0 additions and 1 deletions

View File

@ -314,7 +314,6 @@ class MySQLSchemaManager extends DBSchemaManager
public function alterIndex($tableName, $indexName, $indexSpec)
{
$indexSpec = $this->parseIndexSpec($indexName, $indexSpec);
$this->query(sprintf('ALTER TABLE "%s" DROP INDEX "%s"', $tableName, $indexName));
$this->query(sprintf(
'ALTER TABLE "%s" ADD %s "%s" %s',