1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-30 19:24:13 +02:00

Merge branch 'develop-ascraeus' into develop

This commit is contained in:
Joas Schilling 2014-12-27 13:51:30 +01:00
commit 60b45bb0bd

View File

@ -2127,7 +2127,7 @@ class tools implements tools_interface
}
// 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':