1
0
mirror of synced 2024-12-05 03:06:05 +03:00

getSqlDeclaration -> getSQLDeclaration

Fixed inconsistent use of getSQLDeclaration method
This commit is contained in:
Wilt 2015-03-11 14:14:29 +01:00
parent a6931dedaf
commit 228dc895ca

View File

@ -24,7 +24,7 @@ you wish. Here is an example skeleton of such a custom type class:
{
const MYTYPE = 'mytype'; // modify to match your type name
public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
// return the SQL used to create your column type. To create a portable column type, use the $platform.
}