Django: 设置'unique_together'不起作用

最近做项目的时候在设置model的时候, 原本想设置三个字段联合唯一,代码片段如下:
class Update(models.Model):
    # # 记录ID
    # id = models.BigIntegerField(auto_increase)
    # 资源类型
    category = models.CharField(max_length=32, null=False)
    # 资源版本
    version = models.CharField(max_length=128, null=False)
    # 学校
    school = models.CharField(max_length=64, null=False)

    class Meta:
            db_table = "mng_update"
            ordering = ['-modifyTime']  # 设置排序, -表示倒序
            unique_together = (("category", "version", "school"),) # 设置唯一
测试的时候发现没有起作用:
| id  | school | version | category | createTime | modifyTime   |
|  1  | NULL   | 1.1.0     | cjoms      | 2017-12-22 01:32:35.102394 | 2017-12-22 01:32:35.102441 |
|  2  | NULL   | 1.1.0     | cjoms      | 2017-12-22 01:32:44.825863 | 2017-12-22 01:32:44.825912 |  
查阅资料之后发现是因为school添加的时候默认为空格的原因。
修改之后可以看到正常报错:
添加失败: {"non_field_errors":["The fields category, version, school must make a unique set."]}

原文链接:https://stackoverflow.com/questions/5772176/django-unique-together-and-blank-true

你可能感兴趣的:(python,开发应用)