本文介绍了添加到models.py后,'NOT NULL约束失败'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用userena,并在我的models.py中添加以下行:
I'm using userena and after adding the following line to my models.py
zipcode = models.IntegerField(_('zipcode'),
max_length=5)
我收到以下错误在注册表单上点击提交按钮:
I get the following error after I hit the submit button on th signup form:
IntegrityError at /accounts/signup/
NOT NULL constraint failed: accounts_myprofile.zipcode
我的问题是这个错误是什么意思,这与Userena有关吗? >
My question is what does this error mean, and is this related to Userena?
推荐答案
您必须创建一个迁移,您将在其中为新字段指定默认值,因为您不希望它为空。如果不需要null,只需添加 null = True
并创建并运行迁移。
You must create a migration, where you will specify default value for a new field, since you don't want it to be null. If null is not required, simply add null=True
and create and run migration.
这篇关于添加到models.py后,'NOT NULL约束失败'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!