clarion/db/migrate/20150729145831_drop_join_table_events_sepaker_profiles.rb
Petko Bordjukov 9ca34c5a22 Introduce a Participation model
This model is responsible for the 1..n - 1..n relationship between an
event and the people that will participate in it.
2015-07-31 14:40:04 +03:00

6 lines
126 B
Ruby

class DropJoinTableEventsSepakerProfiles < ActiveRecord::Migration
def up
drop_table :events_speaker_profiles
end
end