sqm-dashboards/app/models/school.rb
2017-03-06 11:35:29 -05:00

9 lines
169 B
Ruby

class School < ApplicationRecord
has_many :schedules
has_many :recipient_lists
belongs_to :district
has_many :recipients
validates :name, presence: true
end