Sha256: 23f540a8585afb541a11cda2725da4f3a211c5f498e41ce3a67a791fc3f51cd8
Contents?: true
Size: 409 Bytes
Versions: 2
Compression:
Stored size: 409 Bytes
Contents
# This migration comes from spree_gateway (originally 20130213222555) 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
2 entries across 2 versions & 1 rubygems