diff options
| author | can <cansarigol@derinbilgi.com.tr> | 2019-05-01 16:39:02 +0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-05-02 09:13:20 +0200 |
| commit | bceadd2788dc2dad53eba0caae172bd8522fd483 (patch) | |
| tree | 7efb2d995f2a78b9b6a596303807d300a64febbf /docs/ref | |
| parent | 6485a5f450b3dc60e690c31a75e0e9574a896842 (diff) | |
Fixed #30396 -- Added system checks for uniqueness of indexes and constraints names.
Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index 973ccebe90..a15eb558fe 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -306,6 +306,13 @@ Models * **models.W027**: ``<database>`` does not support check constraints. * **models.E028**: ``db_table`` ``<db_table>`` is used by multiple models: ``<model list>``. +* **models.E029**: index name ``<index>`` is not unique for model ``<model>``. +* **models.E030**: index name ``<index>`` is not unique amongst models: + ``<model list>``. +* **models.E031**: constraint name ``<constraint>`` is not unique for model + ``<model>``. +* **models.E032**: constraint name ``<constraint>`` is not unique amongst + models: ``<model list>``. Security -------- |
