Sha256: 9474e4e399188ff560bd8f864191884ef0df2ca96bef05852e2f995e2c8c4653

Contents?: true

Size: 384 Bytes

Versions: 1

Compression:

Stored size: 384 Bytes

Contents

class RenamePaymentMethods < ActiveRecord::Migration
  def up
    execute <<-SQL
      update spree_payment_methods set type = 'Spree::Gateway::Mollie' WHERE type = 'Spree::BillingIntegration::Mollie'
    SQL
  end

  def down
    execute <<-SQL
      update spree_payment_methods set type = 'Spree::BillingIntegration::Mollie' WHERE type = 'Spree::Gateway::Mollie'
    SQL
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_mollie-0.0.1 db/migrate/20140117051315_rename_payment_methods.rb