Django has a number of open source projects that tackle one of the framework’s more notable missing features: model “evolution”. Ruby on Rails has native support for migrations, but I’m curious if anyone can recommend one of the following Django “evolution” projects:
Share
South has the most steam behind it. dmigrations is too basic IMO. django-evolution screams if you ever touch the db outside of it.
South is the strongest contender by far. With the model freezing and auto-migrations it’s come a long way.