Rails - Validate presence for boolean field
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 ] }
Tuan Tran
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 ] }