Django 迁移——是否可以在项目中使用 South?

发布于 2024-08-25 07:29:48 字数 27 浏览 9 评论 0原文

我已经开始了一个项目,模型全部同步等等。

I already started a project, and the models are all synced and everything.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝海似她心 2024-09-01 07:29:48

是的。我想现在还不算太晚。我在一个项目进行期间搬到了南方,我对这个选择很满意。我认为这对部署有很大帮助。

South应用程序的初始化可以随时完成。

Yes. I think it is not too late. I've moved to south in a middle of a project and I am happy with that choice. I think it is a big help for deployment.

The initialization of the south app can be done at any moment.

飘然心甜 2024-09-01 07:29:48

开始使用 South 非常简单。

只需按照安装说明(不要忘记最后运行syncdb)即可。

然后您可以将应用程序转换为南

./manage.py convert_to_south myapp

然后您可以对模型进行修改并执行 schemamigrations 甚至执行 数据迁移

It's quite straight forward to start using South.

Just follow the installation instructions (don't forget to run syncdb at the end).

Then you can convert the app to south:

./manage.py convert_to_south myapp

Then you can make modifications to your model and do schemamigrations or even do datamigrations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文