如何运行schema.rb?
我正在尝试运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用架构加载任务:
来自
rake -T
(删除版本):Use the schema load task:
From
rake -T
(expurgated version):