(self, model, schema_editor)
| 144 | ) |
| 145 | |
| 146 | def remove_sql(self, model, schema_editor): |
| 147 | return schema_editor._delete_constraint_sql( |
| 148 | schema_editor.sql_delete_check, |
| 149 | model, |
| 150 | schema_editor.quote_name(self.name), |
| 151 | ) |
| 152 | |
| 153 | def deconstruct(self): |
| 154 | path, args, kwargs = super().deconstruct() |
nothing calls this directly
no test coverage detected