tap/db/migrate/20150209101442_change_default_order_product_count_to_zero.rb

6 lines
145 B
Ruby
Raw Normal View History

2015-02-09 10:58:43 +00:00
class ChangeDefaultOrderProductCountToZero < ActiveRecord::Migration
def change
change_column_default :order_products, :count, 0
end
end