What is the best way to drop a table & remove a model in Rails 3?
I have a model & a table which I no longer need in my App, I could leave them there but I would like to remove them to keep things tidy. I'm trying to figure out the best way to remove them with out messing around with my migrations & db/schema.rb files & any side effect it could have on my production environment, my app is on Heroku. I'm using PostgreSQL on both my local machine & heroku. So far I've found two ways to do this but am not sure which is the best method/ rails way? Method 1 I thought about just going in to my database & dropping the table & then destroying the model. rails db