Published
- 1 min read
rails rollback a migration
The solution for this is noted below
rails rollback a migration
Solution
rake db:rollback STEP=1 #mention the number of migrations to rollback in STEP
# OR
rake db:migrate VERSION=20100905201547 # migration version
Try other methods by searching on the site. That is if this doesn’t work