osem-fcy/app/models/survey.rb
2016-06-30 12:09:21 +02:00

7 lines
204 B
Ruby

class Survey < ActiveRecord::Base
belongs_to :surveyable, polymorphic: true
has_many :survey_questions
enum target: [:after_conference, :during_registration]
validates :title, presence: true
end