Sha256: 371252cbfd712dc37c5f007a04ee6403c332a3a5f698596d9b3a1f38032fc67b
Contents?: true
Size: 409 Bytes
Versions: 2
Compression:
Stored size: 409 Bytes
Contents
# This migration comes from spree_gateway (originally 20131008221012) class UpdatePaypalPaymentMethodType < ActiveRecord::Migration def up Spree::PaymentMethod.where(:type => "Spree::Gateway::PayPal").update_all(:type => "Spree::Gateway::PayPalGateway") end def down Spree::PaymentMethod.where(:type => "Spree::Gateway::PayPalGateway").update_all(:type => "Spree::Gateway::PayPal") end end
Version data entries
2 entries across 2 versions & 1 rubygems