(self)
| 184 | schema_editor.add_field(from_model, to_model._meta.get_field(self.name)) |
| 185 | |
| 186 | def describe(self): |
| 187 | return "Remove field %s from %s" % (self.name, self.model_name) |
| 188 | |
| 189 | @property |
| 190 | def migration_name_fragment(self): |
no outgoing calls