5👍
your migration has a dependency on a migration in another app () which apparently doesn’t exist. if you’ve removed or moved/consolidation migrations in the ‘auth’ app, this is possibly why. if you remove the offending migration from this migration, just make sure changes from the ‘0007’ migration in the auth package (check your source code revision history) have already been applied to your current database and you should be fine to continue without that explicit migration. i would also consider checking if any other apps in your project depend on those missing migrations from ‘auth’. cheers.
(u'auth', u'0007_alter_validators_add_error_messages')
2👍
It worked for me with pip install --upgrade django
I got the same error on installing a new package which also downgraded my Django to version 1.8.16
pip install --upgrade django
installed back the 1.10.3 version (on which I had been working ever since I started with my project) and that solved the problem.
- Django BooleanField as a dropdown
- Django Rest Framework debug post and put requests
- Google.maps.event.addDomListener() is deprecated, use the standard addEventListener() method instead : Google Place autocomplete Error
- Django Storages – Could Not Load Amazon's S3 Bindings Errors
0👍
Your error indicates that tasks
application has a migration that can’t be found.
That’s mean, that you are missing some applications in INSTALLED_APPS
– most probably you do not have ‘django.contrib.auth’ in this list.
- What is the difference between south migrations and django migrations?
- How disable return of HTML error page with django rest framework?
- How to test coverage properly with Django + Nose
0👍
First I would suggest you to upgrade your django
pip install --upgrade django
If this doesn’t help you then try the following:
- Remove the new changes from the modals and run
—python manage.py migrate --fake
- Now again modify your models with new changes and Run
—python manage.py makemigrations
- And then again run
—python manage.py migrate