When you create a model that extends AbstractUser there 2 issues:
- The resulting
models.py is missing from django.contrib.auth.models import AbstractUser.
settings.py is missing something like this AUTH_USER_MODEL = 'users.user'
This causes migrations to fail.

When you create a model that extends AbstractUser there 2 issues:
models.pyis missingfrom django.contrib.auth.models import AbstractUser.settings.pyis missing something like thisAUTH_USER_MODEL = 'users.user'This causes migrations to fail.