class CreateFinancialAidSchoolQuestions < ActiveRecord::Migration[6.1]
  def change
    create_table :financial_aid_school_questions do |t|
      t.references :school, type: :integer, null: false,
        foreign_key: { to_table: :Schools, primary_key: :SchoolID }
      t.references :question, foreign_key: { to_table: :financial_aid_questions }  
      
      t.timestamps
    end
  end
end
