Sha256: 98186bacfa76f054f956eabb6de7c85ddd79c414f476b35e141e7912903e568b
Contents?: true
Size: 728 Bytes
Versions: 9
Compression:
Stored size: 728 Bytes
Contents
# This migration comes from spree (originally 20150609093816) class IncreaseScaleOnPreTaxAmounts < ActiveRecord::Migration[4.2] def change # set pre_tax_amount on shipments to discounted_amount - included_tax_total # so that the null: false option on the shipment pre_tax_amount doesn't generate # errors. # execute(<<-SQL) UPDATE spree_shipments SET pre_tax_amount = (cost + promo_total) - included_tax_total WHERE pre_tax_amount IS NULL; SQL change_column :spree_line_items, :pre_tax_amount, :decimal, precision: 12, scale: 4, default: 0.0, null: false change_column :spree_shipments, :pre_tax_amount, :decimal, precision: 12, scale: 4, default: 0.0, null: false end end
Version data entries
9 entries across 9 versions & 2 rubygems