class StudentEnrollment < ApplicationRecord
  audited

  include Base::StudentEnrollment

  associations_for legacy: true do |a|
    a.belongs_to :school
    a.belongs_to :school_year
    a.belongs_to :family
    a.belongs_to :student
  end
end
