Merge branch 'master' of github.com:laravel/laravel into develop

This commit is contained in:
Taylor Otwell
2012-06-03 17:36:16 -05:00
3 changed files with 3 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ class SQLServer extends Grammar {
{
$name = $command->name;
$columns = $this->columnize($command->$columns);
$columns = $this->columnize($command->columns);
return 'ALTER TABLE '.$this->wrap($table)." ADD CONSTRAINT {$name} PRIMARY KEY ({$columns})";
}