KyivKrishnaAcademy/ved_akadem_students

View on GitHub
app/models/question.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Question < ApplicationRecord
  serialize :data, Hash

  belongs_to :questionnaire
  has_many :answers, dependent: :destroy

  accepts_nested_attributes_for :answers

  has_paper_trail
end