Hello everyone!
I am trying to configure a MySQL database in an existing Django proyect that is already working. I followed all the steps in this site but the result when I type in the console (in my virtual enviroment) "python manage.py migrate" is always:
1044, "Access denied for user 'DianaLaura'@'%' to database ' DianaLaura$intranet'"
I have read in another similar topics but nothing helped.
I have prepared the settings as follows:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': ' DianaLaura$intranet',
'USER': 'DianaLaura',
'PASSWORD': '*******',
'HOST': 'DianaLaura.mysql.pythonanywhere-services.com',
}
}
Is there a mistake or anything new that I am missing?? I am new on this so I appreciate your help.
Thanks!!!!!!
Diana