Django South:如何使用多个安装的代码库和一个中央数据库?

发布于 2024-10-20 00:26:33 字数 1200 浏览 1 评论 0原文

我正在将现有代码库(带有多个应用程序)转换为使用 South。我的代码库当前安装在 1 台开发服务器和 3 台生产服务器上。该开发拥有自己的数据库,3 台生产服务器均连接到一个中央数据库。

我在 http://south.aeracode.org/docs/convertinganapp.html 但我仍然对如何继续感到有点困惑。

这是我计划遵循的步骤:
开发服务器:./manage.pysyncdb(在开发数据库中创建南表)
开发服务器:./manage.py Convert_to_south myapp(在开发数据库中创建 South 文件和记录)
开发服务器:推送到 VCS

服务器 1:从 VCS 拉取(获取 South 文件)
服务器 1:./manage.pysyncdb(在生产数据库中创建南表)
服务器 1:./manage.py migrate myapp 0001 --fake(在生产数据库中创建 South 记录)

服务器 2:从 VCS 拉取(获取 South 文件)
服务器 2:./manage.py migrate myapp 0001 --fake

服务器 3:从 VCS 拉取(获取 South 文件)
服务器 3:./manage.py migrate myapp 0001 --fake

对所有应用重复这些步骤。

问题1:
服务器 2 和 3 是否需要 ./manage.py migrate myapp 0001 --fake 步骤?由于我将在服务器 1 上运行迁移,并且所有三台服务器都使用相同的数据库,因此似乎不需要它,但我不能 100% 确定。

问题2:
如果服务器 2 和 3 上需要 ./manage.py migrate myapp 0001 --fake ,我每次进行数据库迁移时是否需要在服务器 2 和 3 上运行该命令?

一如既往,非常感谢您的帮助。

I am converting an existing codebase (with several apps) to use South. My codebase is currently installed on 1 development server and 3 production servers. The development has its own database and the 3 production servers are all connected to one central database.

I read the info at http://south.aeracode.org/docs/convertinganapp.html but I am still a bit confused as to how to proceed.

This is the steps I plan to follow:
Dev Server: ./manage.py syncdb (To create South tables in dev db)
Dev Server: ./manage.py convert_to_south myapp (To create South files & records in the dev db)
Dev Server: push to VCS

Server 1: pull from VCS (To get South files)
Server 1: ./manage.py syncdb (To create South tables in production db)
Server 1: ./manage.py migrate myapp 0001 --fake (To create South records in the production db)

Server 2: pull from VCS (To get South files)
Server 2: ./manage.py migrate myapp 0001 --fake

Server 3: pull from VCS (To get South files)
Server 3: ./manage.py migrate myapp 0001 --fake

Repeat these steps for all apps.

Question 1:
Is the ./manage.py migrate myapp 0001 --fake step required on Servers 2 and 3? Since I will be running the migrations on Server 1 and all three servers are using the same database, it seems like it should not be required but I am not 100% sure.

Question 2:
If ./manage.py migrate myapp 0001 --fake is required on Servers 2 and 3, will I need to run the command on Servers 2 and 3 every time I do a database migration?

As always, thanks so much for your help.

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

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

发布评论

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

评论(1

踏月而来 2024-10-27 00:26:33

不,您仅使用它来应用对数据库模式的更改。您不需要在服务器 2 和 3 上再次运行 migrate,因为它们使用与服务器 1 相同的数据库。

No, You use it only to apply changes to the database schema. You don't need to run migrate again on Servers 2 and 3, since they are using the same db as Server 1.

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