scinote-web/app/models/result_comment.rb
2017-06-28 15:21:32 +02: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