[Fixed]-Why does Django South require a default value when removing a field?

33👍

Django South allows you to move forwards or backwards through migrations. So, if you ever decided to undo a migration, South would re-create the fields that were deleted. That is why South is asking if you want to specify a default value or “disable the backwards migration by raising an exception.”

Leave a comment