redmine/db/migrate/20210801211024_remove_orphaned_user_custom_values.rb
Marius Balteanu 55ce8de0ae Use ids instead of pluck(:id) (#32977).
git-svn-id: http://svn.redmine.org/redmine/trunk@21208 e93f8b46-1217-0410-a6f0-8f06a7374b81
2021-09-06 18:33:14 +00:00

13 рядки
373 B
Ruby

class RemoveOrphanedUserCustomValues < ActiveRecord::Migration[6.1]
def up
user_custom_field_ids = CustomField.where(field_format: 'user').ids
if user_custom_field_ids.any?
user_ids = Principal.ids
CustomValue.
where(custom_field_id: user_custom_field_ids).
where.not(value: [nil, ''] + user_ids).
delete_all
end
end
end