1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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