Doctrine\DBAL\Platforms\MySqlPlatform::getDecimalTypeDeclarationSQL PHP Method

getDecimalTypeDeclarationSQL() public method

public getDecimalTypeDeclarationSQL ( array $columnDef )
$columnDef array
    public function getDecimalTypeDeclarationSQL(array $columnDef)
    {
        return parent::getDecimalTypeDeclarationSQL($columnDef) . $this->getUnsignedDeclaration($columnDef);
    }
MySqlPlatform