From d987b378ceaa546d43f42588564515aadb0c9233 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Thu, 14 May 2009 02:38:27 +0000 Subject: [PATCH] Fixed #11039: documented that aggregation and generic relations don't mix. Thanks, psmith. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10781 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/contenttypes.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index 05862bc342e..f814eccaabd 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -339,6 +339,21 @@ pointing at it will be deleted as well. In the example above, this means that if a ``Bookmark`` object were deleted, any ``TaggedItem`` objects pointing at it would be deleted at the same time. +Generic relations and aggregation +--------------------------------- + +:ref:`Django's database aggregation API