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:
commit
3ba62628dc
@ -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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user