7 lines
113 B
Ruby
7 lines
113 B
Ruby
|
class Question < ApplicationRecord
|
||
|
serialize :input_options, Array
|
||
|
|
||
|
has_many :answers
|
||
|
belongs_to :quiz
|
||
|
end
|