From a1ffbfb80166bf183552363419e5884a51158405 Mon Sep 17 00:00:00 2001 From: Peter Inglesby Date: Sun, 14 Oct 2018 02:13:45 +0100 Subject: [PATCH] Removed unused fields from aggregation docs. --- docs/topics/db/aggregation.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt index c709c064a5..e7d30b9d82 100644 --- a/docs/topics/db/aggregation.txt +++ b/docs/topics/db/aggregation.txt @@ -26,7 +26,6 @@ used to track the inventory for a series of online bookstores: class Publisher(models.Model): name = models.CharField(max_length=300) - num_awards = models.IntegerField() class Book(models.Model): name = models.CharField(max_length=300) @@ -40,7 +39,6 @@ used to track the inventory for a series of online bookstores: class Store(models.Model): name = models.CharField(max_length=300) books = models.ManyToManyField(Book) - registered_users = models.PositiveIntegerField() Cheat sheet ===========