Fixed typo in docs/ref/contrib/postgres/aggregates.txt.

This commit is contained in:
sdolemelipone 2022-12-05 05:06:09 +01:00 committed by Mariusz Felisiak
parent eccda63a49
commit 0abd8f1cb8
1 changed files with 1 additions and 1 deletions

View File

@ -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()