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

24 lines
747 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class ObjectManagerAttributeCreateMiddle < ActiveRecord::Migration[4.2]
def up
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
ObjectManager::Attribute.all.each do |attribute|
next if attribute.name == 'tags'
next if !attribute.screens
next if !attribute.screens['create_bottom']
attribute.screens['create_middle'] = attribute.screens['create_bottom']
attribute.screens.delete('create_bottom')
attribute.save!
end
attribute = ObjectManager::Attribute.find_by(name: 'priority_id')
attribute.data_option['nulloption'] = false
attribute.save!
Cache.clear
end
end