Sha256: 2413cea26eeb55101536814b6432b8fe73c487a0a498d19d76ca5783bcccd1bd
Contents?: true
Size: 367 Bytes
Versions: 6
Compression:
Stored size: 367 Bytes
Contents
# This migration comes from spree (originally 20140717155155) class CreateDefaultRefundReason < ActiveRecord::Migration 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
6 entries across 6 versions & 3 rubygems