answer_choice.rb 115 Bytes
module Surveyable
  class AnswerChoice < ActiveRecord::Base
    belongs_to :question
    has_one :answer
  end
end