scinote-web/app/models/result_comment.rb
2019-06-10 12:24:02 +02:00

8 lines
195 B
Ruby

# frozen_string_literal: true
class ResultComment < Comment
belongs_to :result, foreign_key: :associated_id, inverse_of: :result_comments, touch: true
validates :result, presence: true
end