Reputation:
snap of error is here which I am getting while I am migrate
First I've installed this package using pip install django-push-notifications after that I've removed this package through pip uninstall django-push-notifications after that when I've tried migrating this. I am getting this error
Upvotes: 1
Views: 1515
Reputation: 2357
Check, if you still have it registered in your Installed_Apps
in settings.py
. If so remove it.
If its not in the installed_apps
then check your URLCONF --> project/urls.py
if there's any url related to it.
Upvotes: 0
Reputation: 1340
You have uninstalled the module, therefore Django could not find it. Thats why it's giving error.
If you have uninstalled the module, please remove push_notifications
present in INSTALLED_APPS
of your settings.py
file
Upvotes: 2