Browse Source

Fixed #30696 -- Removed obsolete mention of CheckConstraint in the AddConstraint docs.

Follow up to 8eae094638acf802c8047b341d126d94bc9b45a3.
Akash Agrawal 5 years ago
parent
commit
c1b26c77a9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/ref/migration-operations.txt

+ 2 - 2
docs/ref/migration-operations.txt

@@ -214,8 +214,8 @@ Removes the index named ``name`` from the model with ``model_name``.
 
 .. versionadded:: 2.2
 
-Creates a constraint in the database table for the model with ``model_name``.
-``constraint`` is an instance of :class:`~django.db.models.CheckConstraint`.
+Creates a :doc:`constraint </ref/models/constraints>` in the database table for
+the model with ``model_name``.
 
 ``RemoveConstraint``
 --------------------