pic_vert_app/app/models/survey_set.rb
2012-08-18 12:07:32 +02:00

8 lines
218 B
Ruby

class SurveySet < ActiveRecord::Base
belongs_to :survey_type
has_many :question_sets
attr_accessible :survey_type_id, :question_sets_attributes, :answer_sets
accepts_nested_attributes_for :question_sets
end