Given a newly created django project with the following installed apps:
INSTALLED_APPS = ( \'django.contrib.admin\', \'django.contrib.auth\', \'django.contrib.co
After updating my Django version, I got this error and fix as running these two lines:
python manage.py migrate auth python manage.py migrate
auth_user table inside auth model should run first I guess.