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

getIntegerTypeDeclarationSQL() public method

{@inheritDoc}
public getIntegerTypeDeclarationSQL ( array $field )
$field array
    public function getIntegerTypeDeclarationSQL(array $field)
    {
        return 'INT' . $this->_getCommonIntegerTypeDeclarationSQL($field);
    }
SQLServerPlatform