mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
8 lines
206 B
Ruby
8 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
|