2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2017-09-08 08:28:34 +00:00
|
|
|
class ObjectManagerAttributeCreateMiddle < ActiveRecord::Migration[4.2]
|
2017-01-13 18:55:12 +00:00
|
|
|
def up
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2017-01-13 18:55:12 +00:00
|
|
|
|
2017-10-01 12:25:52 +00:00
|
|
|
ObjectManager::Attribute.all.each do |attribute|
|
2017-01-13 18:55:12 +00:00
|
|
|
next if attribute.name == 'tags'
|
|
|
|
next if !attribute.screens
|
|
|
|
next if !attribute.screens['create_bottom']
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-01-13 18:55:12 +00:00
|
|
|
attribute.screens['create_middle'] = attribute.screens['create_bottom']
|
|
|
|
attribute.screens.delete('create_bottom')
|
|
|
|
attribute.save!
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2017-01-13 18:55:12 +00:00
|
|
|
|
|
|
|
attribute = ObjectManager::Attribute.find_by(name: 'priority_id')
|
|
|
|
attribute.data_option['nulloption'] = false
|
|
|
|
attribute.save!
|
|
|
|
|
|
|
|
Cache.clear
|
|
|
|
end
|
|
|
|
end
|