mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 19:36:00 +01:00
12 lines
317 B
Ruby
12 lines
317 B
Ruby
|
|
class RemoveOrphanedCustomValueAttachments < ActiveRecord::Migration[7.2]
|
||
|
|
def up
|
||
|
|
Attachment.where(container_type: 'CustomValue')
|
||
|
|
.where('NOT EXISTS (SELECT 1 FROM custom_values WHERE custom_values.id = attachments.container_id)')
|
||
|
|
.destroy_all
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
# no-op
|
||
|
|
end
|
||
|
|
end
|