trabajo-afectivo/db/migrate/20170822000001_agend_based_sender_issue_1351.rb

15 lines
417 B
Ruby
Raw Normal View History

2017-09-08 08:28:34 +00:00
class AgendBasedSenderIssue1351 < ActiveRecord::Migration[4.2]
def up
# return if it's a new setup
return if !Setting.find_by(name: 'system_init_done')
EmailAddress.all.each { |email_address|
begin
email_address.save!
rescue => e
Rails.logger.error "Unable to update EmailAddress.find(#{email_address.id}) '#{email_address.inspect}': #{e.message}"
end
}
end
end