Thay thế 'ENGINE':'mysql' bằng django.db.backends.mysql` là đúng.
Bây giờ, bạn phải thay đổi từ:
DATABASES = {
'default': {
'ENGINE': 'mysql',
'NAME': 'test',
'DATABASE_USER': 'root',
'DATABASE_PASSWORD': 'pass',
}
}
tới:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'test',
'USER': 'root',
'PASSWORD': 'pass',
}
}