Sha256: cba99faf1e0cfdc2128015473d2562a4a66bb93773ceeae936e3f5398d553a60
Contents?: true
Size: 323 Bytes
Versions: 120
Compression:
Stored size: 323 Bytes
Contents
class MigratePaymentMethodsDisplay < ActiveRecord::Migration[4.2] def change Spree::PaymentMethod.all.each do |method| if method.display_on.blank? method.display_on = "both" method.save end end change_column :spree_payment_methods, :display_on, :string, default: "both" end end
Version data entries
120 entries across 120 versions & 1 rubygems