9👍
South has, for good reasons, become the Django migration solution. It works great, is well maintained and has good documentation. Also, if you’re using third party reusable apps, they generally use South for migrations. So by using South, you’ll be able to migrate your own apps as well as third party apps with the same tool.
Migratory, on the other hand, was last updated two years ago, if I understand it correctly.
5👍
South is a safe choice.
Referring to Jacob Kaplan Moss’s blog post and the result of its unformal poll conducted on twitter “What’s your favorite django app“, South is the #1 django third-party app.
More arguments ?
- South is widely used now among Django developers
- You can find a lots of South tutorials in Google
- South begins to get support in all kind of pluggable apps (django-extensions UUIDField supports it for example, spatial fields in geo-Django, etc…).
- Whenever Django integrates such a migration utility (Hey, Ruby on Rails has one built-in!), you guess which app could be the first candidate…
- [Django]-Hiding save buttons in admin if all fields are read only
- [Django]-Django Multiple Levels Choices for Field
- [Django]-Exception while installing packages in Python
- [Django]-Embed an external link in django app
- [Django]-Getting Django's staticfiles includes working inside Vue.js .vue templates
Source:stackexchange.com