rails drop all tables 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: reset database active record
rake db:reset