mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
7 lines
128 B
Ruby
7 lines
128 B
Ruby
class Recipient < ApplicationRecord
|
|
belongs_to :school
|
|
validates_associated :school
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|