Commit ba4271c9 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #752 from AndrewBNZ/master

Fixed typo from previous fix in sqlserver grammar, primary key function.
parents 56c6202d c8466f57
......@@ -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})";
}
......
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