Sha256: ae7cc19fb90ce879e821a8c47f4942dc103e4a8d2afc451a51fe448cfc8161ae
Contents?: true
Size: 344 Bytes
Versions: 25
Compression:
Stored size: 344 Bytes
Contents
class UpdateStripePaymentMethodType < SpreeExtension::Migration[4.2] 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
25 entries across 25 versions & 1 rubygems