blob: 7d886321d116ad041a1d6a43bdc94eee7a7e3973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|