Browse Source

Fixed #31650 -- Added note uniqueness of constraints names in docs.

Hasan Ramezani 4 years ago
parent
commit
55556e51fb
1 changed files with 4 additions and 2 deletions
  1. 4 2
      docs/ref/models/constraints.txt

+ 4 - 2
docs/ref/models/constraints.txt

@@ -67,7 +67,8 @@ ensures the age field is never less than 18.
 
 .. attribute:: CheckConstraint.name
 
-The name of the constraint.
+The name of the constraint. You must always specify a unique name for the
+constraint.
 
 ``UniqueConstraint``
 ====================
@@ -93,7 +94,8 @@ date.
 
 .. attribute:: UniqueConstraint.name
 
-The name of the constraint.
+The name of the constraint. You must always specify a unique name for the
+constraint.
 
 ``condition``
 -------------