Newer
Older
dmpopidor / app / models / new_answer.rb
@xsrust xsrust on 29 Nov 2016 197 bytes updated models for data migration
class NewAnswer < ActiveRecord::Base
  belongs_to :new_plan
  belongs_to :new_question
  has_many :question_options, through: :new_answers_question_options
  has_many :notes
  belongs_to :user
end