20150219213604_add_type_option_attribute_to_pushbullet_agents.rb 451B

    class AddTypeOptionAttributeToPushbulletAgents < ActiveRecord::Migration def up Agents::PushbulletAgent.find_each do |agent| if agent.options['type'].nil? agent.options['type'] = 'note' agent.save! end end end def down Agents::PushbulletAgent.find_each do |agent| if agent.options['type'].present? agent.options.delete 'type' agent.save(validate: false) end end end end