Sha256: f46c53052a33643264fcb7e07065cc32de448d27f9ad2f3002a653a204826eea
Contents?: true
Size: 399 Bytes
Versions: 7
Compression:
Stored size: 399 Bytes
Contents
# This migration comes from spree (originally 20101008190536) class MoveSpecialInstructionsToOrders < ActiveRecord::Migration def up add_column :orders, :special_instructions, :text execute "UPDATE orders SET special_instructions = (SELECT special_instructions FROM checkouts WHERE order_id = orders.id)" end def down remove_column :orders, :special_instructions, :text end end
Version data entries
7 entries across 7 versions & 2 rubygems