1
0
mirror of https://github.com/django/django.git synced 2025-10-24 22:26:08 +00:00

Refs #30913 -- Added system checks for covering indexes and unique constraints support.

This commit is contained in:
Mariusz Felisiak
2020-06-03 06:44:05 +02:00
parent 8c7992f658
commit f83b44075d
4 changed files with 138 additions and 4 deletions

View File

@@ -360,6 +360,10 @@ Models
* **models.W037**: ``<database>`` does not support indexes with conditions.
* **models.W038**: ``<database>`` does not support deferrable unique
constraints.
* **models.W039**: ``<database>`` does not support unique constraints with
non-key columns.
* **models.W040**: ``<database>`` does not support indexes with non-key
columns.
Security
--------