Files
openfoodnetwork/db/migrate/20120327000562_charge_refactoring.rb
Andrew Spinks cd1938a74e spree install.
2012-03-27 11:06:49 +11:00

40 lines
1.6 KiB
Ruby

class Checkout < ActiveRecord::Base; end;
# Hack to prevent issues with legacy migrations
class Order < ActiveRecord::Base
has_one :checkout
end
class ChargeRefactoring < ActiveRecord::Migration
def up
# Temporarily set table name for legacy support
Spree::Adjustment.table_name = 'adjustments'
add_column :orders, :completed_at, :timestamp
Order.reset_column_information
Order.all.each { |o| o.update_attribute(:completed_at, o.checkout && o.checkout.read_attribute(:completed_at)) }
remove_column :checkouts, :completed_at
change_column :adjustments, :amount, :decimal, :null => true, :default => nil, :precision => 8, :scale => 2
Spree::Adjustment.update_all :type => 'secondary_type'
Spree::Adjustment.where(:type => 'Credit').update_all(:type => 'CouponCredit')
remove_column :adjustments, :secondary_type
# Reset table name
Spree::Adjustment.table_name = 'spree_adjustments'
end
def down
add_column :checkouts, :completed_at, :timestamp
Spree::Checkout.reset_column_information
Spree::Checkout.all.each { |c| c.update_attribute(:completed_at, c.order && c.order.completed_at) }
remove_column :orders, :completed_at
add_column :adjustments, :secondary_type, :string
Spree::Adjustment.update_all :secondary_type => 'type'
Spree::Adjustment.where('type LIKE ?', '%Charge').update_all(:type => 'Charge')
Spree::Adjustment.where('type LIKE ?', '%Credit').update_all(:type => 'Credit')
change_column :adjustments, :amount, :decimal, :null => false, :default => 0, :precision => 8, :scale => 2
end
end