Sha256: b4fd36c44a0743a0e126ff2f65d9c6208fb8067eeaa4922eb6e3c746ce32e8f9
Contents?: true
Size: 451 Bytes
Versions: 9
Compression:
Stored size: 451 Bytes
Contents
# This migration comes from spree (originally 20130924040529) class AddPromoTotalToLineItemsAndShipmentsAndOrders < ActiveRecord::Migration[4.2] def change add_column :spree_line_items, :promo_total, :decimal, precision: 10, scale: 2, default: 0.0 add_column :spree_shipments, :promo_total, :decimal, precision: 10, scale: 2, default: 0.0 add_column :spree_orders, :promo_total, :decimal, precision: 10, scale: 2, default: 0.0 end end
Version data entries
9 entries across 9 versions & 2 rubygems