Skip to Content

Rails - Validate presence for boolean field

Posted on

In Rails, we can not use validates :b_field, presence: true. Instead of doing that, we need to use validates inclusion:

validates :attribute_name, inclusion: { in: [ true, false ] }
comments powered by Disqus