Commit 22bd7481 authored by Steve Müller's avatar Steve Müller

fix platform column declaration SQL

parent 56c0806d
......@@ -1008,7 +1008,7 @@ class SQLServerPlatform extends AbstractPlatform
' ' . $field['check'] : '';
$typeDecl = $field['type']->getSqlDeclaration($field, $this);
$columnDef = $typeDecl . $collation . $notnull . $default . $unique . $check;
$columnDef = $typeDecl . $collation . $default . $notnull . $unique . $check;
}
return $name . ' ' . $columnDef;
......
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