scinote-web/app/models/step_comment.rb
2017-06-28 15:21:32 +02:00

9 lines
198 B
Ruby

class StepComment < Comment
belongs_to :step,
foreign_key: :associated_id,
inverse_of: :step_comments,
optional: true
validates :step, presence: true
end