mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
8 lines
342 B
Ruby
8 lines
342 B
Ruby
class SurveyItemResponse < ActiveRecord::Base
|
|
belongs_to :academic_year
|
|
belongs_to :school
|
|
belongs_to :survey_item
|
|
|
|
scope :for_measures, ->(measures) { joins(:survey_item).where('survey_items.measure_id': measures.map(&:id)) }
|
|
scope :for_measure, ->(measure) { joins(:survey_item).where('survey_items.measure_id': measure.id) }
|
|
end
|