scinote-web/app/models/step_comment.rb

6 lines
143 B
Ruby

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