Sha256: 3867c3eda2864d5de46ff8b1a724334ed8cc62a93411b378bcb360cde14f1817
Contents?: true
Size: 446 Bytes
Versions: 14
Compression:
Stored size: 446 Bytes
Contents
# This migration comes from spree (originally 20130924040529) class AddPromoTotalToLineItemsAndShipmentsAndOrders < ActiveRecord::Migration 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
14 entries across 14 versions & 7 rubygems