[Answered ]-ValueError: Related model 'auth.user' cannot be resolved while migrating

1👍

You likely have a setting:

AUTH_USER_MODEL = 'auth.User'

so with a capital U. This will refer to the user model.

You probably did not migrate the auth model. You can do this first with:

python manage.py migrate auth

Leave a comment