Rails: Force empty string to NULL in the database的答案建议使用mixin将空字符串列值设置为nil。
有没有办法测试列是否接受nil / null值?
> f = Foobar.find(1)
=> #<Entity id: 7, name: "foo", description: nil, has_bar: false, created_at: "2014-08-04 21:50:42", updated_at: "2014-08-05 19:35:33">
> f.has_bar.allow_nil?
NoMethodError: undefined method `allow_nil?' for nil:NilClass
我想确保description
字段nil
不是空字符串,但要确保has_bar
为true
或false
。
摘自其他问题:
attributes.each do |column, value|
# invalid syntax
( self[column].present? && self[column].allow_nil? ) || self[column] = nil
end
答案 0 :(得分:0)
f.description.nil? && (f.has_bar == true || f.has_bar == false)