(self, schema_editor)
| 211 | ) |
| 212 | |
| 213 | def remove_collation(self, schema_editor): |
| 214 | schema_editor.execute( |
| 215 | "DROP COLLATION %s" % schema_editor.quote_name(self.name), |
| 216 | ) |
| 217 | |
| 218 | |
| 219 | class CreateCollation(CollationOperation): |
no test coverage detected