Sha256: 79c56c9d8eb5ca7929aae4d432282807a97fb7fa3b5eac514f183877f8dbcb07

Contents?: true

Size: 663 Bytes

Versions: 35

Compression:

Stored size: 663 Bytes

Contents

class MigrateCheckoutToOrders < ActiveRecord::Migration
  def up
    orders = select_all "SELECT * FROM orders"

    orders.each do |order|
      checkout = update_order(order)
      execute "DELETE FROM checkouts WHERE id = #{checkout['id']}" if checkout
    end
  end

  def down
  end

  private
    def update_order(order)
      checkout = select_one "SELECT * FROM checkouts WHERE order_id = #{order['id']}"

      if checkout
        execute "UPDATE orders SET email='#{checkout['email']}', bill_address_id = #{checkout['bill_address_id']}, ship_address_id = #{checkout['ship_address_id']} WHERE id = #{checkout['id']}"
      end
      checkout
    end
end

Version data entries

35 entries across 35 versions & 3 rubygems

Version Path
spree_core-1.2.5 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.1.6 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.1.5 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.2.4 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.0.7 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.2.3 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.2.2 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.1.4 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.2.0 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.2.0.rc2 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.2.0.rc1 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.1.3 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.0.6 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_pag_seguro-1.0.7 spec/dummy/db/migrate/20120301154117_migrate_checkout_to_orders.rb
spree_core-1.1.2 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_core-1.1.2.rc1 db/migrate/20101026184808_migrate_checkout_to_orders.rb
spree_pag_seguro-1.0.6 spec/dummy/db/migrate/20120301154117_migrate_checkout_to_orders.rb
spree_pag_seguro-1.0.5 spec/dummy/db/migrate/20120301154117_migrate_checkout_to_orders.rb
spree_pag_seguro-1.0.4 spec/dummy/db/migrate/20120301154117_migrate_checkout_to_orders.rb
spree_core-1.1.1 db/migrate/20101026184808_migrate_checkout_to_orders.rb