如何运行schema.rb?

发布于 2024-12-26 05:32:19 字数 125 浏览 1 评论 0原文

我正在尝试运行 db:migrate。 但是,这会失败,因为其中一个迁移尝试更新的表之一不存在。我搜索了代码库,该表是在 db/schema.rb 中创建的。

如何在 db:migrate 之前运行 schema.rb?

I'm trying to run db:migrate.
This fails however because one of the tables that one of the migrations is trying to update does not exist. I searched the codebase and this table is created in db/schema.rb.

How can I run schema.rb before db:migrate??

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

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

发布评论

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

评论(1

§对你不离不弃 2025-01-02 05:32:19

使用架构加载任务:

rake db:schema:load

来自 rake -T (删除版本):

rake db:schema:dump  # Create db/schema.rb file usable with any AR-supported DB
rake db:schema:load  # Load schema.rb file into DB

Use the schema load task:

rake db:schema:load

From rake -T (expurgated version):

rake db:schema:dump  # Create db/schema.rb file usable with any AR-supported DB
rake db:schema:load  # Load schema.rb file into DB
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文