Commit cd0ab870 authored by Wilt's avatar Wilt

getSqlDeclaration -> getSQLDeclaration

Fixed inconsistent use of getSQLDeclaration method
parent e6b8640c
......@@ -890,7 +890,7 @@ END;';
$check = (isset($field['check']) && $field['check']) ?
' ' . $field['check'] : '';
$typeDecl = $field['type']->getSqlDeclaration($field, $this);
$typeDecl = $field['type']->getSQLDeclaration($field, $this);
$columnDef = $typeDecl . $default . $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