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