mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
10 lines
282 B
Ruby
10 lines
282 B
Ruby
|
class ResultComment < ActiveRecord::Base
|
||
|
validates :result, :comment, presence: true
|
||
|
validates :result_id, uniqueness: { scope: :comment_id }
|
||
|
|
||
|
belongs_to :result, inverse_of: :result_comments
|
||
|
belongs_to :comment,
|
||
|
inverse_of: :result_comment,
|
||
|
dependent: :destroy
|
||
|
end
|