Does core Django supports migration without django-south or similar app?

前端 未结 3 1003
春和景丽
春和景丽 2021-01-24 05:22

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).

3条回答
  •  抹茶落季
    2021-01-24 06:00

    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:

    Contrib-01 (Add South to contrib) - general consensus - including that of South's lead developer - is that South isn't yet ready to be a bonafide part of Django.

    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.

提交回复
热议问题