summaryrefslogtreecommitdiff
path: root/db/migrate/20150204042612_add_agent_id_to_events.rb
blob: 957473ec6c216a2991648b4f6bb5e240cb8de982 (plain)
1
2
3
4
5
6
class AddAgentIdToEvents < ActiveRecord::Migration
  def change
    add_column :events, :agent_id, :uuid, null: false
    add_index :events, :agent_id
  end
end