Sha256: 5170c871d535a6db1696d7354e204c9d25e30b3d0a8d1b3c6837f0b024ae2cf2

Contents?: true

Size: 648 Bytes

Versions: 21

Compression:

Stored size: 648 Bytes

Contents

class ConvertHabtmToHmtForShippingMethodsZones < ActiveRecord::Migration[4.2]
  def up
    add_column :spree_shipping_methods_zones, :id, :primary_key
    add_column :spree_shipping_methods_zones, :created_at, :datetime
    add_column :spree_shipping_methods_zones, :updated_at, :datetime

    rename_table :spree_shipping_methods_zones, :spree_shipping_method_zones
  end

  def down
    rename_table :spree_shipping_method_zones, :spree_shipping_methods_zones

    remove_column :spree_shipping_methods_zones, :updated_at
    remove_column :spree_shipping_methods_zones, :created_at
    remove_column :spree_shipping_methods_zones, :id
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
solidus_core-2.3.1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.2.2 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.1.1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.0.3 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.3.0 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.3.0.rc3 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.3.0.rc2 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.3.0.rc1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.3.0.beta1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.0.2 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.2.1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.2.0 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.2.0.rc1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.2.0.beta1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.1.0 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.1.0.rc1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.0.1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.1.0.beta1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.0.0 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb
solidus_core-2.0.0.rc1 db/migrate/20150824213633_convert_habtm_to_hmt_for_shipping_methods_zones.rb