mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 09:20:38 -07:00
7 lines
119 B
Ruby
7 lines
119 B
Ruby
class School < ApplicationRecord
|
|
belongs_to :district
|
|
has_many :recipients
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|