sqm-dashboards/app/models/measure.rb
2021-10-01 13:32:10 -04:00

6 lines
149 B
Ruby

class Measure < ActiveRecord::Base
belongs_to :subcategory
has_many :survey_items
has_many :survey_item_responses, through: :survey_items
end