summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-06-19 23:48:29 -0700
committerAndrew Godwin <andrew@aeracode.org>2014-06-19 23:48:57 -0700
commit44b00af9bc3e6e8a561103aa5ca564995ca3c594 (patch)
tree50396f81c8a3cc5ee10f82981beed974607cef57 /docs/ref
parentbfe5f72c7ee4ecec374af9a52c320c019abfc338 (diff)
[1.7.x] Fixed #22874: Document that AUTH_USER_MODEL must be in first migration
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/settings.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 6ea6c2c113..0c6e4fc5af 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -2435,7 +2435,9 @@ The model to use to represent a User. See :ref:`auth-custom-user`.
.. warning::
You cannot change the AUTH_USER_MODEL setting during the lifetime of
a project (i.e. once you have made and migrated models that depend on it)
- without serious effort. It is intended to be set at the project start.
+ without serious effort. It is intended to be set at the project start,
+ and the model it refers to must be available in the first migration of
+ the app that it lives in.
See :ref:`auth-custom-user` for more details.
.. setting:: LOGIN_REDIRECT_URL