rails delete model migration 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 migration remove colum
remove_column :table_name, :column_name