Sha256: 9077af7740f2cb4cae9be06bbac53f1eb69a670db5f94c07d7ba4979a5229d16
Contents?: true
Size: 339 Bytes
Versions: 13
Compression:
Stored size: 339 Bytes
Contents
class UpdateStripePaymentMethodType < ActiveRecord::Migration def up Spree::PaymentMethod.where(:type => "Spree::Gateway::Stripe").update_all(:type => "Spree::Gateway::StripeGateway") end def down Spree::PaymentMethod.where(:type => "Spree::Gateway::StripeGateway").update_all(:type => "Spree::Gateway::Stripe") end end
Version data entries
13 entries across 13 versions & 3 rubygems