1
0
mirror of https://github.com/django/django.git synced 2025-02-04 22:47:53 +00:00

Removed obsolete mentions of a check constraint in BaseDatabaseSchemaEditor.add_constraint()/remove_constraint() docstrings.

This commit is contained in:
Mariusz Felisiak 2019-08-02 07:09:37 +02:00
parent e8d0d2a5ef
commit d14fa04ab3

View File

@ -344,13 +344,13 @@ class BaseDatabaseSchemaEditor:
self.execute(index.remove_sql(model, self))
def add_constraint(self, model, constraint):
"""Add a check constraint to a model."""
"""Add a constraint to a model."""
sql = constraint.create_sql(model, self)
if sql:
self.execute(sql)
def remove_constraint(self, model, constraint):
"""Remove a check constraint from a model."""
"""Remove a constraint from a model."""
sql = constraint.remove_sql(model, self)
if sql:
self.execute(sql)