How to get more info on what field differences where found by manage makemigrations
Occasionally when running manage makemigrations
in my Django project, I end up with an unexpected migrations.AlterField()
entry in my migrations file.
I am aware that these result from Django seeing differences between that field’s definition in my model and the field’s definition after applying all migrations.