tap/db/migrate/20150210062809_order_id_null_allowed_in_order_items.rb

10 lines
229 B
Ruby
Raw Normal View History

2015-02-10 07:33:51 +00:00
class OrderIdNullAllowedInOrderItems < ActiveRecord::Migration
def up
change_column :order_items, :order_id, :integer, null: true
end
def down
change_column :order_items, :order_id, :integer, null: false
end
end