20140818200738_create_institution_user_relation_table.rb 248 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 class CreateInstitutionUserRelationTable < ActiveRecord::Migration def up create_table :institutions_users do |t| t.belongs_to :user t.belongs_to :institution end end def down drop_table :institutions_users end end