Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20220213103859_remove_integrations_type.rb')
-rw-r--r--db/post_migrate/20220213103859_remove_integrations_type.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20220213103859_remove_integrations_type.rb b/db/post_migrate/20220213103859_remove_integrations_type.rb
index c3633d1e7d3..3c420760a2d 100644
--- a/db/post_migrate/20220213103859_remove_integrations_type.rb
+++ b/db/post_migrate/20220213103859_remove_integrations_type.rb
@@ -73,7 +73,7 @@ class RemoveIntegrationsType < Gitlab::Database::Migration[1.0]
add_concurrent_index :integrations, :id, where: 'type_new is null', name: tmp_index_name
define_batchable_model(:integrations).where(type_new: nil).each_batch do |batch|
- min_id, max_id = batch.pluck(Arel.sql('MIN(id), MAX(id)')).first
+ min_id, max_id = batch.pick(Arel.sql('MIN(id), MAX(id)'))
connection.execute(<<~SQL)
WITH mapping(old_type, new_type) AS (VALUES