Sha256: 6b439b0ea2afcb910dfb00ae03e7bcdaa1fd0b829ea8064707efeaccae3d0a56

Contents?: true

Size: 502 Bytes

Versions: 141

Compression:

Stored size: 502 Bytes

Contents

class AddShippingCategoryToShippingMethodsAndProducts < ActiveRecord::Migration[4.2]
  def up
    default_category = Spree::ShippingCategory.first
    default_category ||= Spree::ShippingCategory.create!(name: "Default")

    Spree::ShippingMethod.all.each do |method|
      method.shipping_categories << default_category if method.shipping_categories.blank?
    end

    Spree::Product.where(shipping_category_id: nil).update_all(shipping_category_id: default_category.id)
  end

  def down
  end
end

Version data entries

141 entries across 141 versions & 2 rubygems

Version Path
spree_core-4.0.9 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.1.15 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.2.7 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.3 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.2.6 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.2 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.1 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.0 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.0.rc3 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.0.rc2 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.3.0.rc1 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.2.5 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.1.14 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.0.8 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.2.4 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-3.7.14.1 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.2.3.1 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.1.13.1 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.0.7.1 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb
spree_core-4.2.3 db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb