Sha256: 0ffca2717f5eff48dc9a124ff67144660106bdca578efa89a3fdaf853c86b350
Contents?: true
Size: 389 Bytes
Versions: 141
Compression:
Stored size: 389 Bytes
Contents
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
141 entries across 141 versions & 2 rubygems