scinote-web/app/models/step_comment.rb
2016-02-12 16:52:43 +01:00

8 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