class StudentRequirement < ApplicationRecord
  include Base::StudentRequirement

  audited associated_with: :student, only: :RLID

  associations_for legacy: true do |a|
    a.belongs_to :student, inverse_of: :student_requirement
    a.belongs_to :requirement_label, keys: :RLID
  end
end
