Sha256: e4e83ab394528b31400343f787c1877c1dfcbef38004b890c3e2c82b1b9540fa
Contents?: true
Size: 602 Bytes
Versions: 15
Compression:
Stored size: 602 Bytes
Contents
class CreateShippingMethodZone < ActiveRecord::Migration class ShippingMethodZone < Spree::Base self.table_name = 'shipping_methods_zones' end def up create_table :shipping_methods_zones, :id => false do |t| t.integer :shipping_method_id t.integer :zone_id end Spree::ShippingMethod.all.each do |sm| ShippingMethodZone.create!(zone_id: sm.zone_id, shipping_method_id: sm.id) end remove_column :spree_shipping_methods, :zone_id end def down drop_table :shipping_methods_zones add_column :spree_shipping_methods, :zone_id, :integer end end
Version data entries
15 entries across 15 versions & 1 rubygems