Upgraded to 2.0.3

This commit is contained in:
Mohamed ElKalioby
2020-11-10 09:04:08 +03:00
parent 4a772ee626
commit becfc9e238
5 changed files with 32 additions and 4 deletions

View File

@@ -77,8 +77,10 @@ WSGI_APPLICATION = 'example.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mfa',
'USER': 'root',
'PASSWORD': 'password',
}
}