django-planet
June 22, 2024

Django: Test for pending migrations

published by Adam Johnson
in blog Adam Johnson
original entry Django: Test for pending migrations

This post is an adapted extract from my book Boost Your Django DX, available now.

Django requires every change to model fields and meta classes to be reflected in database migrations. This applies even to things that don’t typically affect the database, such as Field.choices. When iterating on …