Django “Cannot add or update a child row: a foreign key constraint fails”

青春壹個敷衍的年華 提交于 2019-11-29 19:48:11

Some of my tables were in InnoDB and some were in MyISAM... I changed everything to MyISAM and the problem was solved.

DATABASES = {
'default': {
    ...         
    'OPTIONS': {
         "init_command": "SET foreign_key_checks = 0;",
    },
 }
}

(According to the official doc) In previous versions of Django, fixtures with forward references (i.e. relations to rows that have not yet been inserted into the database) would fail to load when using the InnoDB storage engine. This was due to the fact that InnoDB deviates from the SQL standard by checking foreign key constraints immediately instead of deferring the check until the transaction is committed. This problem has been resolved in Django 1.4.

To avoid this happening what you can also do is set your STORAGE_ENGINE in your settings.py

for django >= 1.2

DATABASES = {
    'default': {
        ...
        'STORAGE_ENGINE': 'MyISAM / INNODB / ETC'
    }
}

for django <= 1.2

DATABASE_STORAGE_ENGINE = "MyISAM / INNODB / ETC"

Please note this is only valid for MySQL

I ran into this same issue: mmrs151's solution works, but NB that, for Django <= 1.2 (i.e. before multiple database support), the setting looks like this:

DATABASE_OPTIONS = {"init_command": "SET foreign_key_checks = 0;"}

Worth noting that Ram Rachum seems to have worked around rather than solved the problem: MyISAM doesn't support transactions at all...

Sometime the reason for this error is trying to save child table first and then save parent.
The solution for this is using.

DATABASES = {
 'default': {
  ...         
 'OPTIONS': {
     "init_command": "SET foreign_key_checks = 0;",
     },
  }
}

2). Check your database operation flow and make it parent ---> child

Another option is to drop the contraint in your MySQL table:

alter table <TABLE_NAME> drop foreign key <CONTRAINT_NAME>;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!