1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed typo in docs/releases/4.0.txt.

This commit is contained in:
Ryuji Tsutsui
2021-11-25 01:38:35 +09:00
committed by GitHub
parent 59f4796918
commit b8c0b22f2f

View File

@@ -87,7 +87,7 @@ For example::
last_name = models.CharField(max_length=255) last_name = models.CharField(max_length=255)
class Meta: class Meta:
indexes = [ constraints = [
UniqueConstraint( UniqueConstraint(
Lower('first_name'), Lower('first_name'),
Lower('last_name').desc(), Lower('last_name').desc(),