(self, model: type[Model])
| 305 | related_model._meta.add_field(backward_relation_name, m2m_relation) |
| 306 | |
| 307 | def get_model_reference(self, model: type[Model]) -> str: |
| 308 | return model._meta.full_name |
| 309 | |
| 310 | def get_model(self, app_label: str, model_name: str) -> type[Model]: |
| 311 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected