mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
6 lines
149 B
Ruby
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
|