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

getBigIntTypeDeclarationSQL() public method

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