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