[外鍵約束問(wèn)題]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;",
? ? ? ? }#加入這個(gè)在setting.py文件中數(shù)據(jù)庫(kù)配置信息中
? ? ? ? #'OPTIONS':{'init_command':'SET engine=InnoDB',},
? ? }
}