Changes between Initial Version and Version 1 of Ticket #31263, comment 2


Ignore:
Timestamp:
Feb 11, 2020, 5:55:36 PM (4 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31263, comment 2

    initial v1  
    99That should trigger an immediate re-rerender of all `to_reload` models instead of ''deferring'' on demand which seems to be the issue here.
    1010
     11It's also possible that this is due to `ManyToManyField` auto-created models (when no explicit `through` is specified like in your example) not being reloaded as it seems we only deal with the `through is not None` case
     12
     13https://github.com/django/django/blob/1712a76b9dfda1ef220395e62ea87079da8c9f6c/django/db/migrations/operations/models.py#L325-L333
     14
    1115In order to address this issue we'll need a way to reproduce it so if you could reduce your large project to a simplified set of apps/migrations that would be greatly appreciated.
Back to Top