Sha256: d3d8ddaf5a1ea756f02893f92e9687d09ede2182128af4f18276df04287eb909
Contents?: true
Size: 605 Bytes
Versions: 14
Compression:
Stored size: 605 Bytes
Contents
# This migration comes from spree (originally 20140213184916) class AddMoreIndexes < ActiveRecord::Migration def change add_index :spree_payment_methods, [:id, :type] add_index :spree_calculators, [:id, :type] add_index :spree_calculators, [:calculable_id, :calculable_type] add_index :spree_payments, :payment_method_id add_index :spree_promotion_actions, [:id, :type] add_index :spree_promotion_actions, :promotion_id add_index :spree_promotions, [:id, :type] add_index :spree_option_values, :option_type_id add_index :spree_shipments, :stock_location_id end end
Version data entries
14 entries across 14 versions & 7 rubygems