summaryrefslogtreecommitdiff
path: root/db/migrate/20120728113705_add_uuid_to_hunt_group_member.rb
blob: fc2fb5ca3f8955cdf8e3f3467054a4dff89497c9 (plain)
1
2
3
4
5
6
7
class AddUuidToHuntGroupMember < ActiveRecord::Migration
  def change
    add_column :hunt_group_members, :uuid, :string
    add_index :hunt_group_members, :uuid

  end
end