scinote-web/app/models/result_comment.rb

9 lines
206 B
Ruby
Raw Normal View History

class ResultComment < Comment
2017-06-28 21:21:32 +08:00
belongs_to :result,
foreign_key: :associated_id,
inverse_of: :result_comments,
optional: true
2016-02-12 23:52:43 +08:00
validates :result, presence: true
2016-02-12 23:52:43 +08:00
end