scinote-web/app/models/result_comment.rb
2018-11-29 18:07:31 +01:00

9 lines
206 B
Ruby

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