外键约束问题:django.db.utils.IntegrityError: (1215, 'Cannot add foreign key constraint')报错

img

[外键约束问题]django.db.utils.IntegrityError: (1215, 'Cannot add foreign key constraint')

DATABASES= {

    'default': {

        'ENGINE': 'django.db.backends.mysql',

        'NAME': 'ebusiness',

        'USER':'root',

        'PASSWORD':'123456',

        'HOST':'localhost',

        'PORT':'3306',
		# 加下面这个
        'OPTIONS': {

            "init_command": "SET foreign_key_checks = 0;",

        }  # 加入这个在setting.py文件中数据库配置信息中
    }
}
posted @ 2022-05-04 12:41  zong涵  阅读(516)  评论(0编辑  收藏  举报