15 lines
412 B
Ruby
15 lines
412 B
Ruby
|
class AgendBasedSenderIssue1351 < ActiveRecord::Migration
|
||
|
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
|