我问的是问题的反面,强制空字符串为 NULL;相反,我希望将空字符串字段存储为空字符串。我想这样做的原因(即使与某些人所说的相矛盾)是我希望对适用于多种数据库类型(postgres、mysql 等)的表有一个部分唯一性约束,如此处的问题所述.
模式的伪代码基本上是:
Person {
first_name : String, presence: true
middle_name : String, presence: true
last_name : String, presence: true
birth_date : String, presence: true
city_of_birth: String, presence: true
active: tinyint
}
约束是如果一个人是活跃的,那么他必须是唯一的;不活跃的人可以不是唯一的(即,我可以有多个不活跃的 John Smith,但只有一个活跃的 John Smith)。
进一步复杂化:根据项目规范,用户只需要给出first_name和last_name,其他字段可以为空。
我们当前应用部分唯一性约束的解决方案是使用 NULL != NULL 的事实,如果有人不活动,则将活动 tinyint 设置为 NULL,如果有人活动,则将其设置为 1。因此,我们可以在迁移中使用这个 rails 代码:
add_index :Persons, [first_name, middle_name, last_name, birth_date,
city_of_birth, active], unique:true, name: "unique_person_constraint"
但是,为了使此约束起作用,其他字段都不能为 NULL。如果是,那么两个没有其他填充字段且 active = 1 的 John Smiths 仍将是“唯一的”,因为值为 NULL 的 middle_name 字段将彼此不同(因为 NULL != NULL,无论列类型如何)。
但是,当我这样做时
options = { first_name: "John",
middle_name: "",
last_name: "Smith",
birth_date: "",
city_of_birth: "",
}
person = Person.new(options)
success = person.valid?
success
总是错误的,因为
Middle name can't be blank
City of birth can't be blank
Birth date can't be blank
因此,我需要一种方法来确保对于那些其他字段,我始终至少有空字符串来强制执行部分唯一性约束。我怎样才能做到这一点?如果我摆脱presence:true
了模型定义中的 ,那么现在似乎允许 NULL 字段,这很糟糕。
这是Rails 3.2.13,如果需要,我可以提供其他gem 和gem 版本。