clarion/db/migrate/20140807104059_add_user_reference_to_speaker_profiles.rb

6 lines
150 B
Ruby
Raw Normal View History

class AddUserReferenceToSpeakerProfiles < ActiveRecord::Migration[4.2]
def change
add_reference :speaker_profiles, :user, index: true
end
end