Custom Django Python Migration
A quick outline of how to create a custom migration in Django.
A quick outline of how to create a custom migration in Django.
I ran into a problem recently when trying to reconfigure my Django project’s database.
I had a DateTimeField on my model that I was updating to have null=True and blank=True.
There were no rows in this table. I was able to make the migrations, but then ran …