Changes between Initial Version and Version 1 of Ticket #26693
- Timestamp:
- May 31, 2016, 12:13:00 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26693 – Description
initial v1 3 3 This 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. 4 4 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. 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. (Or even better if it were possible to check immediately if `'apps' in state.__dict__` and skip the rendering completely.)