(self, model, name)
| 1987 | ) |
| 1988 | |
| 1989 | def _delete_check_sql(self, model, name): |
| 1990 | if not self.connection.features.supports_table_check_constraints: |
| 1991 | return None |
| 1992 | return self._delete_constraint_sql(self.sql_delete_check, model, name) |
| 1993 | |
| 1994 | def _delete_constraint_sql(self, template, model, name): |
| 1995 | return Statement( |
no test coverage detected