📜  如何破坏 Rails 中的迁移 - Ruby 代码示例

📅  最后修改于: 2022-03-11 15:04:49.279000             🧑  作者: Mango

代码示例2
To rollback all migrations the best solution is:

rake db:migrate VERSION=0
This will rollback any migrations without losing data. Then, run all migrations again with

rake db:migrate