class AddSchoolYearIdToEdFiIds < ActiveRecord::Migration[6.0]
  def change
    add_reference :ed_fi_ids, :school_year, type: :integer, after: :id,
      foreign_key: { to_table: :SchoolYears, primary_key: :SchoolYearID }
  end
end
