Files
fetsite/app/models/survey/choice.rb
2015-07-30 00:03:02 +02:00

6 lines
192 B
Ruby

class Survey::Choice < ActiveRecord::Base
belongs_to :question, class_name: 'Survey::Question'
attr_accessible :picture, :sort, :text
has_many :answers, class_name: 'Survey::Answer'
end