From 55ce8de0aea23397aafdee68e4e7be1beb6089a9 Mon Sep 17 00:00:00 2001
From: Marius Balteanu <marius.balteanu@zitec.com>
Date: Mon, 6 Sep 2021 18:33:14 +0000
Subject: Use ids instead of pluck(:id) (#32977).

git-svn-id: http://svn.redmine.org/redmine/trunk@21208 e93f8b46-1217-0410-a6f0-8f06a7374b81
---
 db/migrate/20210801211024_remove_orphaned_user_custom_values.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'db')

diff --git a/db/migrate/20210801211024_remove_orphaned_user_custom_values.rb b/db/migrate/20210801211024_remove_orphaned_user_custom_values.rb
index 446ef7f10..7d886321d 100644
--- a/db/migrate/20210801211024_remove_orphaned_user_custom_values.rb
+++ b/db/migrate/20210801211024_remove_orphaned_user_custom_values.rb
@@ -1,8 +1,8 @@
 class RemoveOrphanedUserCustomValues < ActiveRecord::Migration[6.1]
   def up
-    user_custom_field_ids = CustomField.where(field_format: 'user').pluck(:id)
+    user_custom_field_ids = CustomField.where(field_format: 'user').ids
     if user_custom_field_ids.any?
-      user_ids = Principal.pluck(:id)
+      user_ids = Principal.ids
       CustomValue.
         where(custom_field_id: user_custom_field_ids).
         where.not(value: [nil, ''] + user_ids).
-- 
cgit v1.2.3