Rails greater_than model validation against model attribute

前端 未结 4 1491
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-12 15:35

I\'ve got a Trip model, which among other attributes has a start_odometer and end_odometer value. In my model, i\'d like to validate that the end odometer is larger than the st

4条回答
  •  遇见更好的自我
    2021-02-12 15:43

    It's a bit kludgy, but this seems to work:

    validates_numericality_of :end_odometer, :greater_than => :start_odometer.to_i, :allow_blank => true
    

提交回复
热议问题