tap/db/migrate/20141125130213_drop_products_on_users.rb

6 lines
112 B
Ruby
Raw Normal View History

class DropProductsOnUsers < ActiveRecord::Migration
def change
remove_column :orders, :products
end
end