2017-09-08 08:28:34 +00:00
|
|
|
class FixedTranslation2 < ActiveRecord::Migration[4.2]
|
2017-03-14 05:12:10 +00:00
|
|
|
def up
|
|
|
|
|
|
|
|
# return if it's a new setup
|
|
|
|
return if !Setting.find_by(name: 'system_init_done')
|
|
|
|
|
|
|
|
settings_update = [
|
|
|
|
{
|
|
|
|
'name' => 'http_type',
|
|
|
|
'title' => 'HTTP type',
|
|
|
|
'description' => 'Define the http protocol of your instance.',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2017-10-01 12:25:52 +00:00
|
|
|
settings_update.each do |setting|
|
2017-03-14 05:12:10 +00:00
|
|
|
fetched_setting = Setting.find_by(name: setting['name'])
|
|
|
|
next if !fetched_setting
|
|
|
|
|
|
|
|
if setting['title']
|
|
|
|
fetched_setting.title = setting['title']
|
|
|
|
end
|
|
|
|
|
|
|
|
if setting['description']
|
|
|
|
fetched_setting.description = setting['description']
|
|
|
|
end
|
|
|
|
|
|
|
|
fetched_setting.save!
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2017-03-14 05:12:10 +00:00
|
|
|
|
|
|
|
Translation.load
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|