Answers for "rails migration undo migration"

3

rails revert migration

rake db:rollback
Posted by: Guest on November-19-2020
0

how to reset migrations rails

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
Posted by: Guest on February-17-2020

Browse Popular Code Answers by Language