osem-fcy/app/models/survey.rb

9 lines
192 B
Ruby
Raw Normal View History

2016-06-28 18:16:06 +03:00
class Survey < ActiveRecord::Base
belongs_to :surveyable, polymorphic: true
has_many :survey_questions
enum target: [:conference, :registration]
2016-06-28 18:16:06 +03:00
validates :title, presence: true
end