Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPS

Thanks dpravdin and Jordan Messina.
This commit is contained in:
Tim Graham 2013-01-18 18:38:12 -05:00
parent 1dd7492843
commit 0375244eae
1 changed files with 3 additions and 2 deletions

View File

@ -404,8 +404,9 @@ the :setting:`AUTH_USER_MODEL` setting that references a custom model::
AUTH_USER_MODEL = 'myapp.MyUser'
This dotted pair describes the name of the Django app, and the name of the Django
model that you wish to use as your User model.
This dotted pair describes the name of the Django app (which must be in your
:setting:`INSTALLED_APPS`), and the name of the Django model that you wish to
use as your User model.
.. admonition:: Warning