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