Does Django consists of a migration concept without south app?
If not why didn’t they include it in Django 1.4? (Since, it’s a must have).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, it doesn’t. South is considered as the ‘de facto’ standard for database migration in Django. Further reading can be found in the Django development wiki.
From the version 1.2 release notes:
This, most probably, is still valid. South has its limitations, it still has gaps that could be considered as flaws when being a django.contrib module.
That said, I want to add: south still is extremely useful.