mirror of https://github.com/django/django.git
Fixed typo in docs/ref/contrib/postgres/aggregates.txt.
This commit is contained in:
parent
eccda63a49
commit
0abd8f1cb8
|
@ -157,7 +157,7 @@ General-purpose aggregation functions
|
|||
class Room(models.Model):
|
||||
number = models.IntegerField(unique=True)
|
||||
|
||||
class HotelReservation(model.Model):
|
||||
class HotelReservation(models.Model):
|
||||
room = models.ForeignKey('Room', on_delete=models.CASCADE)
|
||||
start = models.DateTimeField()
|
||||
end = models.DateTimeField()
|
||||
|
|
Loading…
Reference in New Issue