Sha256: c619abf2d799e331cc238bf6e5cf965246d9954f36dbc36f53388c38d1956dbe
Contents?: true
Size: 401 Bytes
Versions: 11
Compression:
Stored size: 401 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
11 entries across 11 versions & 1 rubygems