New to Rails here. Couple of questions about migrations:
I created a migration that I no longer want. I want to remove it. Is the correct command simply
rails destroy migration AddMyColumnToMyModel
?Let's say I mistype that migration name that I want to destroy... Here's what happens when I attempt to destroy a migration that does not exist.
$ rails destroy migration Blah invoke active_record remove migration.rb
It says it's removing
migration.rb
... Is this a bad thing?