Changes between Initial Version and Version 1 of Ticket #37049
- Timestamp:
- Apr 18, 2026, 2:53:47 PM (3 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #37049 – Description
initial v1 3 3 The check to make changes to field options like `blank=True` on m2m's with a custom through model no-ops is currently only checking that both through models were non-auto-created [https://github.com/django/django/blob/1b0d46f715849de53563aaf6912b4ded7d61641d/django/db/backends/base/schema.py#L882-L893 source], rather than verifying they are the same model. This means any two custom through models would satisfy the check and short-circuit. 4 4 5 See regression test in attached PRfor how to reproduce.5 See regression test in [https://github.com/django/django/pull/21131 PR] for how to reproduce.