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

Version Path
spree_weight_calculator-0.1.0 test/dummy/db/migrate/20160723192440_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_order_reporting-0.0.3 spec/dummy/db/migrate/20160708163037_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_order_reporting-0.0.2 spec/dummy/db/migrate/20160707103361_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_order_reporting-0.0.1 spec/dummy/db/migrate/20160706112313_remove_not_null_constraint_from_products_on_hand.spree.rb
sprangular-0.1.0 spec/dummy/db/migrate/20140814105639_remove_not_null_constraint_from_products_on_hand.spree.rb
sprangular-0.0.1 spec/dummy/db/migrate/20140814105639_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago-0.2.3 spec/dummy/db/migrate/20141204014632_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago-0.2.2 spec/dummy/db/migrate/20141204014632_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago-0.2.1 spec/dummy/db/migrate/20141112193415_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago-0.2.0 spec/dummy/db/migrate/20141112193415_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago_payment_method-0.2.0 spec/dummy/db/migrate/20141112193415_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_bitpay-1.0.2 spec/dummy/db/migrate/20141002181212_remove_not_null_constraint_from_products_on_hand.spree.rb
bcms_spree-0.0.2 test/dummy/db/migrate/20140915222551_remove_not_null_constraint_from_products_on_hand.spree.rb
bcms_spree-0.0.1 test/dummy/db/migrate/20140915222551_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago_payment_method-0.0.2 spec/dummy/db/migrate/20121121030245_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago_payment_method-0.1.1 spec/dummy/db/migrate/20121121030245_remove_not_null_constraint_from_products_on_hand.spree.rb
spree_mercado_pago_payment_method-0.1.0 spec/dummy/db/migrate/20121121030245_remove_not_null_constraint_from_products_on_hand.spree.rb