Whenever I create and run a new migration, my earliest migration automatically starts executing and gives me the following error:- "rake aborted! An error has occurred, all later migrations canceled: Mysql2::Error: Table 'xyz' already exists" Due to the this error my rake db:migrate does not run and rather I have to use rake db:migrate:up VERSION=123xyz for my new migration. What shall I do to remove this error , so that my previous miration doesn't run everytime.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try checking if your Gemfile is updated. See Listing 1.18 (scroll above to see the same a similar error message the author addresses): http://ruby.railstutorial.org/chapters/beginning#code:gemfile_sqlite_heroku Inside the GemFile:
|
|||
|