2019-04-28 11:56:16 +03:00
|
|
|
class CreateJoinTableVolunteerVolunteerTeam < ActiveRecord::Migration[4.2]
|
2015-10-21 23:13:39 +03:00
|
|
|
def change
|
|
|
|
create_join_table :volunteers, :volunteer_teams do |t|
|
|
|
|
t.index [:volunteer_id, :volunteer_team_id], name: 'volunteer_id_volunteer_team_id'
|
|
|
|
t.index [:volunteer_team_id, :volunteer_id], name: 'volunteer_team_id_volunteer_id'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|