南方迁移和 django 迁移有什么区别?

What is the difference between south migrations and django migrations?

任何人都可以解释一下南迁移和 django 迁移之间的区别吗? advantage/disadvantage 一个人比另一个人有什么优势?

South 是第三方 Django 应用程序,它在 Django 1.7 中引入内置迁移解决方案之前添加了对迁移的支持。除非您坚持使用已过时已久的 Django 版本,否则根本没有理由使用 South。 FWIW,只需检查 the south project's page 就可以回答您的问题:

South has been deprecated.

From Django 1.7 upwards, migrations are built into the core of Django. If you are running a previous version, you can find the repository on BitBucket.

两者在功能范围内非常相似(这并不奇怪,因为新的内置迁移系统作为 South 的 2.0 分支开始它的生命),除了新系统运行得更好,特别是当你必须合并两个每个分支都有自己的迁移。