mirror of
https://github.com/django/django.git
synced 2025-10-23 21:59:11 +00:00
Removed obsolete mentions of a check constraint in BaseDatabaseSchemaEditor.add_constraint()/remove_constraint() docstrings.
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user