how to migrate down a table rails code example
Example 1: how to delete a table in rails
rails g migration DropProducts
class DropProducts < ActiveRecord::Migration
def change
drop_table :products
end
end
Example 2: ruby on rails db migrate
rails db:migrate