Sha256: e0fcbcad1bb5e0a075b2be9bcce3baf309273ae762eee7ad9ccc6c620ad9c3e5
Contents?: true
Size: 406 Bytes
Versions: 9
Compression:
Stored size: 406 Bytes
Contents
# This migration comes from spree (originally 20140205181631) class DefaultVariantWeightToZero < ActiveRecord::Migration[4.2] def up Spree::Variant.unscoped.where(weight: nil).update_all("weight = 0.0") change_column :spree_variants, :weight, :decimal, precision: 8, scale: 2, default: 0.0 end def down change_column :spree_variants, :weight, :decimal, precision: 8, scale: 2 end end
Version data entries
9 entries across 9 versions & 2 rubygems