tap/db/migrate/20150210062809_order_id_null_allowed_in_order_items.rb
2015-02-10 08:33:51 +01:00

10 lines
229 B
Ruby

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