osem-fcy/app/models/survey.rb
2016-06-30 17:28:07 +02:00

8 lines
235 B
Ruby

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