class Attendance::Type < Base::Attendance::Type
  associations_for legacy: true do |a|
    a.belongs_to :school
    a.has_many :attendances
  end

  def self.ordered
    order(:sequence)
  end
end
