I migrate all the data to server but not showing the data or tables on registerusers
Hi Yash,
seems like you haven’t changed the settings.py file
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'projectdb',
'USER': 'root',
'PASSWORD': '',
'HOST': '3306',
'PORT': '',
}
}
1 Like