class AddSchoolYearToEdFiLogs < ActiveRecord::Migration[6.0]
  def change
    add_reference :ed_fi_logs, :school_year, type: :integer, null: true, index: false,
      after: :id, foreign_key: { to_table: :SchoolYears, primary_key: :SchoolYearID }
  end
end
