Commit e6b8640c authored by Wilt's avatar Wilt

getSqlDeclaration -> getSQLDeclaration

Fixed inconsistent use of getSqlDeclaration method name
parent 6b6143ba
......@@ -2206,7 +2206,7 @@ abstract class AbstractPlatform
$check = (isset($field['check']) && $field['check']) ?
' ' . $field['check'] : '';
$typeDecl = $field['type']->getSqlDeclaration($field, $this);
$typeDecl = $field['type']->getSQLDeclaration($field, $this);
$columnDef = $typeDecl . $charset . $default . $notnull . $unique . $check . $collation;
}
......
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