Como excluir uma mesa em trilhos
rails g migration DropProducts
class DropProducts < ActiveRecord::Migration
def change
drop_table :products
end
end
Bright Beaver
rails g migration DropProducts
class DropProducts < ActiveRecord::Migration
def change
drop_table :products
end
end