Browse Source

Fixed #30670 -- Doc'd SchemaEditor.add/remove_constraint().

Akash Agrawal 5 years ago
parent
commit
af08a54415
2 changed files with 19 additions and 0 deletions
  1. 1 0
      AUTHORS
  2. 18 0
      docs/ref/schema-editor.txt

+ 1 - 0
AUTHORS

@@ -27,6 +27,7 @@ answer newbie questions, and generally made Django that much better:
     Ahmad Al-Ibrahim
     Ahmed Eltawela <https://github.com/ahmedabt>
     ajs <adi@sieker.info>
+    Akash Agrawal <akashrocksha@gmail.com>
     Akis Kesoglou <akiskesoglou@gmail.com>
     Aksel Ethem <aksel.ethem@gmail.com>
     Akshesh Doshi <aksheshdoshi+django@gmail.com>

+ 18 - 0
docs/ref/schema-editor.txt

@@ -81,6 +81,24 @@ Adds ``index`` to ``model``’s table.
 
 Removes ``index`` from ``model``’s table.
 
+``add_constraint()``
+--------------------
+
+.. method:: BaseDatabaseSchemaEditor.add_constraint(model, constraint)
+
+.. versionadded:: 2.2
+
+Adds ``constraint`` to ``model``'s table.
+
+``remove_constraint()``
+-----------------------
+
+.. method:: BaseDatabaseSchemaEditor.remove_constraint(model, constraint)
+
+.. versionadded:: 2.2
+
+Removes ``constraint`` from ``model``'s table.
+
 ``alter_unique_together()``
 ---------------------------