skill-assessment-app/app/models/quiz_comment.rb

8 lines
203 B
Ruby
Raw Normal View History

2017-02-10 12:03:50 -06:00
# frozen_string_literal: true
class QuizComment < ApplicationRecord
belongs_to :user
belongs_to :candidate, foreign_key: :test_hash, primary_key: :test_hash
validates :message, presence: true
end