mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed typo in docs/ref/contrib/postgres/aggregates.txt.
This commit is contained in:
parent
eccda63a49
commit
0abd8f1cb8
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue