class Covid::Answer < ApplicationRecord
  belongs_to :screening
  belongs_to :question, class_name: 'Covid::FormQuestion'

  has_many :answer_options, foreign_key: :answer_id, class_name: 'Covid::AnswerOption',
     autosave: true, validate: false, dependent: :destroy
  has_many :options, through: :answer_options
end
