Sha256: 1e22f3a907eae18f1a4125b529abd776d7726af200851efc4407f45620f0da4c
Contents?: true
Size: 503 Bytes
Versions: 9
Compression:
Stored size: 503 Bytes
Contents
# This migration comes from spree (originally 20140710181204) class AddAmountFieldsToReturnItems < ActiveRecord::Migration[4.2] def change add_column :spree_return_items, :pre_tax_amount, :decimal, precision: 10, scale: 2, default: 0.0, null: false add_column :spree_return_items, :included_tax_total, :decimal, precision: 10, scale: 2, default: 0.0, null: false add_column :spree_return_items, :additional_tax_total, :decimal, precision: 10, scale: 2, default: 0.0, null: false end end
Version data entries
9 entries across 9 versions & 2 rubygems