scinote-web/app/models/result_comment.rb

8 lines
195 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ResultComment < Comment
belongs_to :result, foreign_key: :associated_id, inverse_of: :result_comments, touch: true
2016-02-12 23:52:43 +08:00
validates :result, presence: true
2016-02-12 23:52:43 +08:00
end