1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 15:45:34 +02:00

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
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;
case 'mssql':