class SchoolDistrictImport < ApplicationRecord
  audited

  include Base::SchoolDistrictImport

  associations_for legacy: true do |a|
    a.belongs_to :school
    a.belongs_to :school_year
    a.belongs_to :student
    a.belongs_to :author, class_name: 'User', primary_key: :UserID
  end
end
