sqm-dashboards/app/models/category.rb
2023-12-21 13:34:16 -08:00

12 lines
295 B
Ruby

# frozen_string_literal: true
class Category < ActiveRecord::Base
include FriendlyId
friendly_id :name, use: [:slugged]
scope :sorted, -> { order(:sort_index) }
has_many :subcategories
has_many :measures, through: :subcategories
has_many :admin_data_items, through: :measures
end