Sha256: 1ddeca67e93114ca242ae730072494a2df60af243d964f7425fdbc66feca1141
Contents?: true
Size: 372 Bytes
Versions: 9
Compression:
Stored size: 372 Bytes
Contents
# This migration comes from spree (originally 20140717155155) class CreateDefaultRefundReason < ActiveRecord::Migration[4.2] def up Spree::RefundReason.create!(name: Spree::RefundReason::RETURN_PROCESSING_REASON, mutable: false) end def down Spree::RefundReason.find_by(name: Spree::RefundReason::RETURN_PROCESSING_REASON, mutable: false).destroy end end
Version data entries
9 entries across 9 versions & 2 rubygems