mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Available during registration or after conference Co-authored-by: Shyukri <shshyukriev@suse.com> Co-authored-by: Henne <hvogel@opensuse.org> Co-authored-by: Moises <mdeniz@suse.com>
7 lines
176 B
Ruby
7 lines
176 B
Ruby
class SurveyReply < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :survey_question
|
|
serialize :text
|
|
|
|
validates :survey_question_id, uniqueness: { scope: :user_id }
|
|
end
|