rails remove table 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: rails remove model
rails destroy model <model_name>