这是我在django settings.py中的数据库代码:
DATABASES= {
'defualt': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'cameronkc',
'USER': 'root',
'PASSWORD': '123456',
'HOST': 'localhost',
'PORT': ''
}
}
这是在命令提示符下执行> python manage.py migration 时收到的错误消息
django.db.utils.ConnectionDoesNotExist: The connection default doesn't exist
答案 0 :(得分:1)
您在DATABASES
格中拼写了默认值。将'defualt'
更改为'default'
。