mirror of
https://github.com/django/django.git
synced 2025-11-03 13:23:19 +00:00
Removed unused fields from aggregation docs.
This commit is contained in:
parent
a3052c35d1
commit
a1ffbfb801
1 changed files with 0 additions and 2 deletions
|
|
@ -26,7 +26,6 @@ used to track the inventory for a series of online bookstores:
|
||||||
|
|
||||||
class Publisher(models.Model):
|
class Publisher(models.Model):
|
||||||
name = models.CharField(max_length=300)
|
name = models.CharField(max_length=300)
|
||||||
num_awards = models.IntegerField()
|
|
||||||
|
|
||||||
class Book(models.Model):
|
class Book(models.Model):
|
||||||
name = models.CharField(max_length=300)
|
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):
|
class Store(models.Model):
|
||||||
name = models.CharField(max_length=300)
|
name = models.CharField(max_length=300)
|
||||||
books = models.ManyToManyField(Book)
|
books = models.ManyToManyField(Book)
|
||||||
registered_users = models.PositiveIntegerField()
|
|
||||||
|
|
||||||
Cheat sheet
|
Cheat sheet
|
||||||
===========
|
===========
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue