Sha256: 96365f9cbdeacd52342e8b1c265bb1b8e6f3cba54f452dc67e5e34b6f1d7d3db
Contents?: true
Size: 329 Bytes
Versions: 36
Compression:
Stored size: 329 Bytes
Contents
class AddIndexToSpreeStockItemsVariantId < ActiveRecord::Migration def up unless index_exists? :spree_stock_items, :variant_id add_index :spree_stock_items, :variant_id end end def down if index_exists? :spree_stock_items, :variant_id remove_index :spree_stock_items, :variant_id end end end
Version data entries
36 entries across 36 versions & 2 rubygems