Doctrine\DBAL\Platforms\OraclePlatform::getIntegerTypeDeclarationSQL PHP Method

getIntegerTypeDeclarationSQL() public method

{@inheritDoc}
public getIntegerTypeDeclarationSQL ( array $field )
$field array
    public function getIntegerTypeDeclarationSQL(array $field)
    {
        return 'NUMBER(10)';
    }
OraclePlatform