mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
8 lines
181 B
Ruby
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
|