20140818200738_create_institution_user_relation_table.rb 248 Bytes
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