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
1 changed files with 2 additions and 2 deletions

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)