scinote-web/app/models/result_comment.rb

10 lines
232 B
Ruby

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