Split django_evolution.evolve into per-class modules.
Review Request #12219 — Created March 30, 2022 and submitted — Latest diff uploaded
The
django_evolution.evolvemodule is responsible for orchestrating
the entire evolution and migration process, and as such it's fairly
complex and large. In an effort to keep this maintainable, the module
has been split up into four sub-modules:
django_evolution.evolve.basedjango_evolution.evolve.evolverdjango_evolution.evolve.evolve_app_taskdjango_evolution.evolve.purge_app_task
No logic has changed. This is a straight-forward split of the module.
All unit tests pass.