mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 08:05:53 +02:00
Merge pull request #3 from silverstripe-rebelalliance/7813
BUG: open ticket 7813 fixing dobule quoting issue in getIndexSqlDefiniti...
This commit is contained in:
commit
a74470ff52
@ -860,7 +860,7 @@ class MSSQLDatabase extends SS_Database {
|
||||
if($indexSpec['type'] == 'unique') {
|
||||
if(!is_array($indexSpec['value'])) $columns = preg_split('/ *, */', trim($indexSpec['value']));
|
||||
else $columns = $indexSpec['value'];
|
||||
$SQL_columnList = '"' . implode('", "', $columns) . '"';
|
||||
$SQL_columnList = implode(', ', $columns);
|
||||
|
||||
return "$drop CREATE UNIQUE INDEX $index ON \"" . $tableName . "\" ($SQL_columnList);";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user