如何使 Rails 迁移以当前 RAILS_ENV 为条件?

发布于 2024-10-19 13:32:28 字数 216 浏览 1 评论 0原文

如何使 Rails 迁移以当前 RAILS_ENV 为条件?

具体来说,我想要:

  1. 检查到 head-of-master 的迁移
  2. 仅在我们的 Staging 实例上执行迁移

这样做将允许我们通过迁移执行数据库更新 - 我们只希望在我们的 Staging 环境中执行数据库更新。一个示例是出于测试目的激活特定帐户或帐户类别的功能。

How do you make a Rails migration conditional on the current RAILS_ENV?

Specifically, I want to:

  1. Check a migration into head-of-master
  2. Execute the migration only on our Staging instance

Doing this will allow us to perform database updates - via migrations - which we only want in our Staging environment. An example would be activating a feature for a specific account or class of accounts for testing purposes.

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

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

发布评论

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

评论(1

忆沫 2024-10-26 13:32:28

只需在迁移中的上/下类方法中使用 Rails.env.product? / Rails.env.? 即可。

Just use Rails.env.production? / Rails.env.<custom-env>? in your up / down class methods in the Migration.

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