(self, app_label, project_state, operations, atomic=True)
| 250 | ) |
| 251 | |
| 252 | def apply_operations(self, app_label, project_state, operations, atomic=True): |
| 253 | migration = Migration("name", app_label) |
| 254 | migration.operations = operations |
| 255 | with connection.schema_editor(atomic=atomic) as editor: |
| 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) |
no test coverage detected