Bike!Bike! Website!
 
 
 
 
 
 

11 lines
259 B

class CreateConferenceHostOrganizations < ActiveRecord::Migration
def change
create_table :conference_host_organizations do |t|
t.integer :conference_id
t.integer :organization_id
t.integer :order
t.timestamps
end
end
end