Rails 迁移是否应该与 schema.rb 分开提交?

发布于 2024-11-01 22:09:24 字数 61 浏览 4 评论 0原文

生成/编写/运行 Rails 数据库迁移后,迁移文件和 db/schema.rb 是否应该单独提交版本控制?

After generating / writing / running a Rails database migration, should the migration file and db/schema.rb be committed to version control separately?

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

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

发布评论

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

评论(2

请远离我 2024-11-08 22:09:24

如果 schema.rb 与迁移不同步,一些应该相似的 rake 任务可能会表现不同,例如:

创建数据库后,如果运行:

rake db:migrate - 它将运行迁移

rake db:schema:load - 它将使用 schema.rb

重置数据库:

rake db:migrate:reset - 重新创建一个一个运行迁移的数据库。

rake db:reset - 使用当前版本的 schema.rb 重新创建数据库

在这两种情况下,无论您选择哪个任务,结果都应该是相同的。通常,首选使用 schema.rb,因为它一步创建数据库,而不是传递每个单独的迁移,但如果它与迁移的版本不同,结果将会不同。

Some rake tasks that should be similar may behave differently if schema.rb is not in sync with migrations, for example:

After creating the database, if you run:

rake db:migrate - it'll run the migrations

rake db:schema:load - it'll use the schema.rb

Reseting the database:

rake db:migrate:reset - recreates the database running the migrations one by one.

rake db:reset - recreates the database using current version of schema.rb

In both cases, no matter which task you choose, the result should be the same. Normally, using schema.rb is preferred since it creates the database in one step, instead of passing for every single migration, but if it's not the same version as the migrations the results will be different.

请爱~陌生人 2024-11-08 22:09:24

我见过的大多数人都在一次提交中提交了它们。

这样对我来说更有意义。它确保在任何修订上运行 rake db:migrate 不会修改 db/schema.rb

Most people I've seen commit them in a single commit.

It makes more sense to me that way. It makes sure that running a rake db:migrate on any revision doesn't modify db/schema.rb.

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