Sha256: 3a942fe8d3a5dc86b22b9104af24c4ce9040315cc30d17ad44d17b13d85b7080
Contents?: true
Size: 537 Bytes
Versions: 5
Compression:
Stored size: 537 Bytes
Contents
# frozen_string_literal: true # This migration comes from spree (originally 20170608074534) class RenameBogusGateways < ActiveRecord::Migration[5.0] def up require 'solidus/migrations/rename_gateways' say_with_time 'Renaming bogus gateways into payment methods' do Solidus::Migrations::RenameGateways.new.up end end def down require 'solidus/migrations/rename_gateways' say_with_time 'Renaming bogus payment methods into gateways' do Solidus::Migrations::RenameGateways.new.down end end end
Version data entries
5 entries across 5 versions & 3 rubygems