| published by | Adam Johnson |
|---|---|
| in blog | Adam Johnson |
| original entry | Django: Test for pending migrations |
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 …