tap/db/migrate/20150209101442_change_default_order_product_count_to_zero.rb
2015-02-09 11:58:43 +01:00

6 lines
145 B
Ruby

class ChangeDefaultOrderProductCountToZero < ActiveRecord::Migration
def change
change_column_default :order_products, :count, 0
end
end