Changes between Initial Version and Version 1 of Ticket #26693


Ignore:
Timestamp:
May 31, 2016, 12:13:00 PM (8 years ago)
Author:
Simon Percivall
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26693 – Description

    initial v1  
    33This is for a pretty big app, with lots of migrations. The time to run `makemigrations` for all apps goes from 1 seconds to 77 seconds with one `RenameModel` migration.
    44
    5 A test where `apps.state` was replaced by `temp_state = state.close(); apps = temp_state.apps` resolved the issue, but I'm not completely sure of the side effects of doing that.
     5A test where `apps.state` was replaced by `temp_state = state.close(); apps = temp_state.apps` resolved the issue, but I'm not completely sure of the side effects of doing that. (Or even better if it were possible to check immediately if `'apps' in state.__dict__` and skip the rendering completely.)
Back to Top