Commit 6d3fabe3 authored by Wilt's avatar Wilt

getSqlDeclaration -> getSQLDeclaration

Fixed inconsistent use of getSQLDeclaration method
parent 5792233a
...@@ -1517,7 +1517,7 @@ class SQLServerPlatform extends AbstractPlatform ...@@ -1517,7 +1517,7 @@ class SQLServerPlatform extends AbstractPlatform
$check = (isset($field['check']) && $field['check']) ? $check = (isset($field['check']) && $field['check']) ?
' ' . $field['check'] : ''; ' ' . $field['check'] : '';
$typeDecl = $field['type']->getSqlDeclaration($field, $this); $typeDecl = $field['type']->getSQLDeclaration($field, $this);
$columnDef = $typeDecl . $collation . $notnull . $unique . $check; $columnDef = $typeDecl . $collation . $notnull . $unique . $check;
} }
......
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