summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-02-04 12:48:01 +0000
committerJannis Leidel <jannis@leidel.info>2012-02-04 12:48:01 +0000
commit954e3b4ad37b572cdc46baf3e35c712f4049efea (patch)
tree8a3acb8d0498e5fc0c61b7bb01cebcc0d3b1c1f5 /docs
parent6ecadcbdd2d2d34948e6482bfffe2c818887b39e (diff)
Fixed #13914 -- Added natural keys to User and Group models in auth contrib app. Thanks, jbochi and closedbracket.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17429 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/serialization.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/topics/serialization.txt b/docs/topics/serialization.txt
index 244609337a..d7d72ec48a 100644
--- a/docs/topics/serialization.txt
+++ b/docs/topics/serialization.txt
@@ -215,7 +215,9 @@ automatically created by Django during the database synchronization process,
the primary key of a given content type isn't easy to predict; it will
depend on how and when :djadmin:`syncdb` was executed. This is true for all
models which automatically generate objects, notably including
-:class:`~django.contrib.auth.models.Permission`.
+:class:`~django.contrib.auth.models.Permission`,
+:class:`~django.contrib.auth.models.Group`, and
+:class:`~django.contrib.auth.models.User`.
.. warning::