1 | | Interested in taking on this change. I'm thinking it'll involve: |
2 | | * Undoing [26c4be2ebe] to disable fast_deletes when m2m_changed signals are connected |
3 | | * Took at look at [https://github.com/django/django/pull/6579] but I'm not sure the approach there is correct, the hidden through model is already included and cascaded in the collector. We just need to fire the correct signal in that case, and we can do so easily by checking `model._meta.auto_created` [https://github.com/django/django/blob/a97d6b198eec13a98ef60d7f440528ba82889071/django/db/models/deletion.py#L327 which is already being done]. |
| 1 | Interested in taking on this change. I'm thinking it'll involve undoing [26c4be2ebe] to disable fast_deletes when m2m_changed signals are connected on top of [https://github.com/django/django/pull/6579]. |