mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
11 lines
283 B
Ruby
11 lines
283 B
Ruby
class Question < ApplicationRecord
|
|
belongs_to :category
|
|
|
|
validates :text, presence: true
|
|
validates :option1, presence: true
|
|
validates :option2, presence: true
|
|
validates :option3, presence: true
|
|
validates :option4, presence: true
|
|
validates :option5, presence: true
|
|
|
|
end
|