Sha256: 2f61bf17a0a83e828a1d856125ab5594b6dff38c64aa9575a4593ccfa0200df7
Contents?: true
Size: 293 Bytes
Versions: 65
Compression:
Stored size: 293 Bytes
Contents
class CreateIndexesForInventoryUnits < ActiveRecord::Migration def self.up add_index(:inventory_units, :variant_id) add_index(:inventory_units, :order_id) end def self.down remove_index(:inventory_units, :variant_id) remove_index(:inventory_units, :order_id) end end
Version data entries
65 entries across 53 versions & 10 rubygems