I want to delete all the files it created and roll back any changes made, but not necessarily to the database, but more to the config files.
I\'d like to automatical
Suppose I have created a controller named "sample" like:
rails generate controller sample
If I have to destroy this controller, all I have to do is swap generate with destroy, as in
rails destroy controller sample.
If you want to reverse the generation, all you have to do is swap generate with destroy.