mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07: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
|