mirror of
https://github.com/django/django.git
synced 2025-08-06 03:48:38 +00:00
Fixed typo in exception message for GiST indexes and exclusion constraints.
This commit is contained in:
parent
dd26362f63
commit
000d430234
4 changed files with 4 additions and 4 deletions
|
@ -126,7 +126,7 @@ class ExclusionConstraint(BaseConstraint):
|
|||
def check_supported(self, schema_editor):
|
||||
if self.include and not schema_editor.connection.features.supports_covering_gist_indexes:
|
||||
raise NotSupportedError(
|
||||
'Covering exclusion constraints requires PostgreSQL 12+.'
|
||||
'Covering exclusion constraints require PostgreSQL 12+.'
|
||||
)
|
||||
|
||||
def deconstruct(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue