Sha256: adad813df5ecde2f246d2556b5118be98e4383cfd936f1205def56a2167eaebe
Contents?: true
Size: 468 Bytes
Versions: 9
Compression:
Stored size: 468 Bytes
Contents
# This migration comes from spree (originally 20121017010007) class RemoveNotNullConstraintFromProductsOnHand < ActiveRecord::Migration[4.2] 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
9 entries across 9 versions & 2 rubygems