(self, app_label, schema_editor, from_state, to_state)
| 111 | ) |
| 112 | |
| 113 | def database_backwards(self, app_label, schema_editor, from_state, to_state): |
| 114 | model = from_state.apps.get_model(app_label, self.name) |
| 115 | if self.allow_migrate_model(schema_editor.connection.alias, model): |
| 116 | schema_editor.delete_model(model) |
| 117 | |
| 118 | def describe(self): |
| 119 | return "Create %smodel %s" % ( |