Sha256: 30b0c90fe9cb7249d5d05bd79da1268a03045eb17142d61ba8c6defad107577d
Contents?: true
Size: 315 Bytes
Versions: 28
Compression:
Stored size: 315 Bytes
Contents
class UpdateCalculableTypeForPromotions < ActiveRecord::Migration def up execute "UPDATE spree_calculators SET calculable_type = 'Promotion' WHERE calculable_type = 'Coupon'" end def down execute "UPDATE spree_calculators SET calculable_type = 'Coupon' WHERE calculable_type = 'Promotion'" end end
Version data entries
28 entries across 28 versions & 1 rubygems