diff options
| author | Peter Inglesby <peter.inglesby@gmail.com> | 2018-10-14 02:13:45 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-10-13 21:14:14 -0400 |
| commit | 19968895220b517168df7ba2798468f165a858cc (patch) | |
| tree | 415d38dbe7c5dba5e245e9d4b8cd064d527e98cf | |
| parent | 4d7fbbdd7d37a1748ec04bebdce1065a8c19f578 (diff) | |
[2.1.x] Removed unused fields from aggregation docs.
Backport of a1ffbfb80166bf183552363419e5884a51158405 from master
| -rw-r--r-- | docs/topics/db/aggregation.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt index 0609c7f63d..30d25f551b 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 =========== |
