(self, name, check)
| 1971 | return self._delete_constraint_sql(sql, model, name) |
| 1972 | |
| 1973 | def _check_sql(self, name, check): |
| 1974 | return self.sql_constraint % { |
| 1975 | "name": self.quote_name(name), |
| 1976 | "constraint": self.sql_check_constraint % {"check": check}, |
| 1977 | } |
| 1978 | |
| 1979 | def _create_check_sql(self, model, name, check): |
| 1980 | if not self.connection.features.supports_table_check_constraints: |
no test coverage detected