I wanted to get rid of some development experimentation so I started destroying my models and controllers and then I went to the db part of the job. Looking at previous answers like this Rails DB Migration - How To Drop a Table? and the API guide for Rails 5 I ve realized that dropping a specific table is not as straightforward as "rails destroy controller users"... But why is that?
A previous stackoverflow post suggested running bundle exec... before going after the controller and models but I ve lost that ship now.
In short: can someone describe with some technical insight the steps that I should go after to remove the remnant table in detail now AND explain to me why is not as simple to delete a specific table at this point?
A best practice guide for rolling back experimentations would be appreciated.