mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -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':
|
||||||
|
|
Loading…
Add table
Reference in a new issue