Sha256: 506e223d554ba663b77e9403d0f6a7b45062c46dacf6cddf42da7424a99a9d17

Contents?: true

Size: 923 Bytes

Versions: 9

Compression:

Stored size: 923 Bytes

Contents

# This migration comes from spree (originally 20150726141425)
class RenameHasAndBelongsToAssociationsToModelNames < ActiveRecord::Migration[4.2]
  def change
    {
      'spree_option_types_prototypes' => 'spree_option_type_prototypes',
      'spree_option_values_variants' => 'spree_option_value_variants',
      'spree_orders_promotions' => 'spree_order_promotions',
      'spree_products_promotion_rules' => 'spree_product_promotion_rules',
      'spree_taxons_promotion_rules' => 'spree_promotion_rule_taxons',
      'spree_promotion_rules_users' => 'spree_promotion_rule_users',
      'spree_properties_prototypes' => 'spree_property_prototypes',
      'spree_taxons_prototypes' => 'spree_prototype_taxons',
      'spree_roles_users' => 'spree_role_users',
      'spree_shipping_methods_zones' => 'spree_shipping_method_zones'
    }.each do |old_name, new_name|
      rename_table old_name, new_name
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
spree_purchase_order-3.7.0 spec/dummy/db/migrate/20191113195927_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_billing_sisow-0.9.2 spec/dummy/db/migrate/20190729091868_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_billing_sisow-0.9.1 spec/dummy/db/migrate/20190729091868_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_purchase_order-3.6.0 spec/dummy/db/migrate/20180516182056_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_purchase_order-3.5.0 spec/dummy/db/migrate/20180516182056_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_purchase_order-3.5.0.rc1 spec/dummy/db/migrate/20180516182056_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_purchase_order-3.4.0 spec/dummy/db/migrate/20180516182056_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_purchase_order-3.3.0 spec/dummy/db/migrate/20180516182056_rename_has_and_belongs_to_associations_to_model_names.spree.rb
spree_purchase_order-3.2.0 spec/dummy/db/migrate/20180516182056_rename_has_and_belongs_to_associations_to_model_names.spree.rb