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