[2.1.x] Removed unused fields from aggregation docs.

Backport of a1ffbfb801 from master
This commit is contained in:
Peter Inglesby 2018-10-14 02:13:45 +01:00 committed by Tim Graham
parent 4d7fbbdd7d
commit 1996889522
1 changed files with 0 additions and 2 deletions

View File

@ -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
===========