class AddOndelteEdfiContact < ActiveRecord::Migration[6.0]
  def change
    remove_foreign_key :ed_fi_student_contacts, column: :student_id
    add_foreign_key :ed_fi_student_contacts, :Students, column: :student_id, primary_key: :StudentID, on_delete: :cascade
    
    remove_foreign_key :ed_fi_student_contacts, column: :family_parent_id
    add_foreign_key :ed_fi_student_contacts, :FamilyParents, column: :family_parent_id, primary_key: :FamilyParentID, on_delete: :cascade
  end
end
