Sha256: d35ca293f050ba8f6f144d0e68db87c225bb48e7d9b862d86a04d31cb1745b17
Contents?: true
Size: 475 Bytes
Versions: 17
Compression:
Stored size: 475 Bytes
Contents
# This migration comes from spree (originally 20121017010007) class RemoveNotNullConstraintFromProductsOnHand < ActiveRecord::Migration def up change_column :spree_products, :count_on_hand, :integer, :null => true change_column :spree_variants, :count_on_hand, :integer, :null => true end def down change_column :spree_products, :count_on_hand, :integer, :null => false change_column :spree_variants, :count_on_hand, :integer, :null => false end end
Version data entries
17 entries across 17 versions & 7 rubygems