Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在玩 Rails 迁移,但遇到了一个我无法找到解决方案的问题。
基本上,我使用 rails 生成器来创建和销毁迁移以在模型中添加和删除变量。
由于使用了“rails destroy migration”,我的架构一团糟。它根本不反映我目前的迁移。这是破坏机制的限制,还是我错过了一些关键的 rake db: 命令?有没有办法从当前迁移中重建架构?
我无法将这些部分组合在一起,一个链接或关键字就足够了。
回滚您的迁移,
rake db:rollback回滚到上次迁移。
rake db:rollback
rake db:rollback STEP=3将还原最后 3 次迁移。
rake db:rollback STEP=3
更多关于 rake 任务的信息在这里