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
- [Answered ]-Django-registration-redux and spurious migration from DEFAULT_AUTO_FIELD of BigAutoField
Source:stackexchange.com