我有一个用Rails Administrate
gem 构建的管理界面。
belongs_to
它变得非常烦人,因为它在模型上设置了存在验证。
Location.validators_on(:parent)
=> [#<ActiveRecord::Validations::PresenceValidator:0x0000000507b6b0 @attributes=[:parent], @options={:message=>:required}>, # <ActiveRecord::Validations::LengthValidator:0x0000000507a710 @attributes= [:parent], @options={:minimum=>1, :allow_blank=>true}>]
如何跳过此验证?