django.db.utils.IntegrityError:列“venue_city”包含空值

Posted

技术标签:

【中文标题】django.db.utils.IntegrityError:列“venue_city”包含空值【英文标题】:django.db.utils.IntegrityError: column "venue_city" contains null values 【发布时间】:2016-09-11 12:41:25 【问题描述】:

我在 *** 和 google 上阅读了很多其他帖子,但我找不到解决方案。

这一切都始于我将模型从 CharField 更改为 ForeignKey。 我收到的错误是:

Operations to perform:
  Synchronize unmigrated apps: gis, staticfiles, crispy_forms, geoposition, messages
  Apply all migrations: venues, images, amenities, cities_light, registration, auth, admin, sites, sessions, contenttypes, easy_thumbnails, newsletter
Synchronizing apps without migrations:
  Creating tables...
    Running deferred SQL...
  Installing custom SQL...
Running migrations:
  Rendering model states... DONE
  Applying venues.0016_auto_20160514_2141...Traceback (most recent call last):
  File "/Users/iam-tony/.envs/venuepark/lib/python3.4/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
psycopg2.IntegrityError: column "venue_city" contains null values

我的模型如下:

class Venue(models.Model):
    venue_city = models.ForeignKey(City, null=True,)
    venue_country=models.ForeignKey(Country, null=True)

venue_country 之前不存在,因此迁移成功。但是venue_city 是一个CharField。

我对我的迁移文件进行了一些更改,以便它可以按如下方式执行 sql:

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('venues', '0011_venue_map_activation'),
    ]

    migrations.RunSQL(''' ALTER TABLE venues_venue ALTER venue_city TYPE integer USING  venue_city::integer '''),

    migrations.RunSQL(''' ALTER TABLE venues_venue ALTER venue_city RENAME COLUMN venue_city TO venue_city_id '''),

    migrations.RunSQL(''' ALTER TABLE venues_venue ADD CONSTRAINT venues_venus_somefk FOREIGN KEY (venue_city_id) REFERENCES  cities_light (id) DEFERRABLE INITIALLY DEFERRED'''),

提前致谢!

更新:我的新迁移文件:

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('cities_light', '0006_compensate_for_0003_bytestring_bug'),
        ('venues', '0024_remove_venue_venue_city'),
    ]

    operations = [
        migrations.AddField(
            model_name='venue',
            name='venue_city',
            field=models.ForeignKey(null=True, to='cities_light.City'),
        ),
    ]

【问题讨论】:

我认为,您在创建迁移文件后添加了null=True。因为venue_city 在您的迁移文件中不是可为空的字段 @Anoop 我该如何解决这个问题?是的,我做到了。 你使用的是哪个 django 版本? 如果是最新版本则再次执行`python manage.py makemigration 1.8.7,我尝试再次进行makemigration和migration,但还是一样 【参考方案1】:

有一个类似的问题,我通过删除以前的迁移文件解决了它。没有技术解释

【讨论】:

只保留第一个[0001]。只需将其保存在另一个文件夹中,以防它不起作用。 做到了,它在我运行 makemigrations 时从其他节点请求依赖 :-( 我的帮助到此结束。但是因为迁移文件依赖于以前的文件。尝试检查它们,因为错误是对数据库的提交冲突的结果 绝对不要盲目这样做。可能会导致一些疯狂的 prod db 问题。【参考方案2】:

看起来您在创建迁移文件后添加了null=True。因为venue_city 在您的迁移文件中不是可为空的字段

按照这些步骤操作。

1) Drop venue_city & venue_country from your local table
3) Delete all the migration files you created for these `CharField to a ForeignKey` change
4) execute `python manage.py makemigrations`
5) execute 'python manage.py migrate'

它应该可以工作

【讨论】:

感谢 Anoop 在聊天室中提供的所有帮助! 你是怎么做的 1)? 作为快速评论,如果您使用的是 AWS Elastic Beanstalk 之类的东西,则只需更正模型、删除错误的迁移并再次进行迁移会更容易。【参考方案3】:

我通过将null = True 添加到导致问题的(自动生成的)迁移文件和模型中解决了这个问题。然后再次migrate,您失败的迁移现在将成功。当您在模型中也对其进行了更改时,makemigration 之后将检测不到任何更改。

【讨论】:

【参考方案4】:

我通过以下方式解决了它:

    先删除最后一个遇到问题的迁移 然后添加venue_city = models.CharField(blank=True, null=True) 最终使用makemigrationsmigrate命令

【讨论】:

【参考方案5】:

请按照以下步骤操作:-

在 Venue 模型类中添加 null=True, blank=True 例如:venue_city = models.ForeignKey(City, null=True, blank=True) 从您应用的迁移文件夹中删除 venues.0016_auto_20160514_2141 迁移文件 然后运行 ​​python manage.py makemigrations 然后运行 ​​python manage.py migrate

无需从迁移表中删除表或删除迁移

【讨论】:

以上是关于django.db.utils.IntegrityError:列“venue_city”包含空值的主要内容,如果未能解决你的问题,请参考以下文章