trabajo-afectivo/db/migrate/20201111133905_maintenance_associations_cleanup.rb
2022-01-01 14:38:12 +01:00

12 lines
405 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class MaintenanceAssociationsCleanup < ActiveRecord::Migration[5.2]
def change
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
remove_reference :templates, :user, index: true, foreign_key: true
remove_reference :text_modules, :user, index: true, foreign_key: true
end
end