(self, app_label, project_state, operations, atomic=True)
| 256 | return migration.apply(project_state, editor) |
| 257 | |
| 258 | def unapply_operations(self, app_label, project_state, operations, atomic=True): |
| 259 | migration = Migration("name", app_label) |
| 260 | migration.operations = operations |
| 261 | with connection.schema_editor(atomic=atomic) as editor: |
| 262 | return migration.unapply(project_state, editor) |
| 263 | |
| 264 | def make_test_state(self, app_label, operation, **kwargs): |
| 265 | """ |
no test coverage detected