sqm-dashboards/app/models/respondent.rb
2023-02-21 16:58:08 -08:00

8 lines
181 B
Ruby

# frozen_string_literal: true
class Respondent < ApplicationRecord
belongs_to :school
belongs_to :academic_year
validates :school, uniqueness: { scope: :academic_year }
end