1class AddAgentIdToEvents < ActiveRecord::Migration 2 def change 3 add_column :events, :agent_id, :uuid, null: false 4 add_index :events, :agent_id 5 end 6end