Merge pull request #3205 from rxu/ticket/13406

[ticket/13406] Add a space between the index name and columns list
This commit is contained in:
Joas Schilling 2014-12-27 13:51:24 +01:00
commit 3ba62628dc

View file

@ -2175,7 +2175,7 @@ class tools
} }
// no break // no break
case 'mysql_41': case 'mysql_41':
$statements[] = 'ALTER TABLE ' . $table_name . ' ADD INDEX ' . $index_name . '(' . implode(', ', $column) . ')'; $statements[] = 'ALTER TABLE ' . $table_name . ' ADD INDEX ' . $index_name . ' (' . implode(', ', $column) . ')';
break; break;
case 'mssql': case 'mssql':