class CreateFinancialAidContacts < ActiveRecord::Migration[6.1]
  def change
    create_table :financial_aid_contacts do |t|
      t.references :application, null: false,
        foreign_key: { to_table: :financial_aid_applications }
      t.references :contact, type: :integer, null: false,
        foreign_key: { to_table: :Contact, primary_key: :ContactID }
        
      t.timestamps
    end
  end
end
