Doctrine\DBAL\Platforms\SQLServerPlatform::_getCommonIntegerTypeDeclarationSQL PHP Метод

_getCommonIntegerTypeDeclarationSQL() защищенный Метод

{@inheritDoc}
protected _getCommonIntegerTypeDeclarationSQL ( array $columnDef )
$columnDef array
    protected function _getCommonIntegerTypeDeclarationSQL(array $columnDef)
    {
        return !empty($columnDef['autoincrement']) ? ' IDENTITY' : '';
    }
SQLServerPlatform