Sha256: 57cd8272c66b3f066a6faf9b7442f8e18a5e22b8b4872bcc0f7171d496ad1ae8
Contents?: true
Size: 413 Bytes
Versions: 152
Compression:
Stored size: 413 Bytes
Contents
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
152 entries across 152 versions & 4 rubygems