scinote-web/app/models/step_comment.rb

6 lines
115 B
Ruby
Raw Normal View History

class StepComment < Comment
belongs_to :step, foreign_key: :associated_id
2016-02-12 23:52:43 +08:00
validates :step, presence: true
2016-02-12 23:52:43 +08:00
end