mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
7 lines
241 B
Ruby
7 lines
241 B
Ruby
class StepComment < ActiveRecord::Base
|
|
validates :comment, :step, presence: true
|
|
validates :step_id, uniqueness: { scope: :comment_id }
|
|
|
|
belongs_to :comment, inverse_of: :step_comment
|
|
belongs_to :step, inverse_of: :step_comments
|
|
end
|