-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extending AbstractUser fails to import AbstractUser #177
Comments
Thanks for the feedback.
|
For number 2, would this be a reasonable work around?
This would at least leave a clue about what is happening, it would ensure the app starts and runs without errors, and lastly you would have to add confusing features to the UI. |
Issue 1 should now be fixed and deployed to djangobuilder.io |
When you create a model that extends AbstractUser there 2 issues:
models.py
is missingfrom django.contrib.auth.models import AbstractUser
.settings.py
is missing something like thisAUTH_USER_MODEL = 'users.user'
This causes migrations to fail.
The text was updated successfully, but these errors were encountered: