Commit b961a3fc authored by Benjamin Eberlei's avatar Benjamin Eberlei

[DBAL-254] Fix sp_RENAME usage for table renames.

parent 331fd04c
...@@ -280,7 +280,7 @@ class SQLServerPlatform extends AbstractPlatform ...@@ -280,7 +280,7 @@ class SQLServerPlatform extends AbstractPlatform
$columnSql = array(); $columnSql = array();
if ($diff->newName !== false) { if ($diff->newName !== false) {
$queryParts[] = 'RENAME TO ' . $diff->newName; $queryParts[] = "sp_RENAME '" . $diff->name . "', '" . $diff->newName . "'";
} }
foreach ($diff->addedColumns AS $fieldName => $column) { foreach ($diff->addedColumns AS $fieldName => $column) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment