5
class Incubator(models.Model):
    name = models.CharField(max_length=30)
    category = models.CharField(max_length=30, blank=True)
    acceptanceRate = models.DecimalField(max_digits=5, decimal_places=2, blank=True, null=True)
    funding = models.IntegerField()
    programLength = models.DecimalField(max_digits=4, decimal_places=2)
    kloutScore = models.IntegerField(blank=True, null=True)
    companies = models.ManyToManyField(Company, blank=True)

    def __unicode__(self):
        return self.name

当我将任何整数字段留空时,我不断收到一条错误消息,

IntegrityError at /admin/incubators/incubator/add/
incubators_incubator.kloutScore may not be NULL

我想通过设置空白=真和空=真,它会解决这个问题吗?

4

2 回答 2

7

这是因为我在创建数据库之后添加了“blank=true”和“null=true”。我不得不删除我的数据库,然后删除“syncdb”,然后它就起作用了。

于 2012-07-06T05:36:52.597 回答
0

我在这篇文章中遇到了类似的问题,所以我想我会分享对我有用的解决方案:

在相关 models.py 文件中的原始类中,而不是只使用没有任何值的构造函数,如下所示:

 some_field = models.BooleanField()

.. 我改为配置默认值 False:

 some_field = models.BooleanField(default = False)

..然后再次同步数据库后,我的问题就解决了。

于 2013-12-30T14:39:05.603 回答