Sha256: 72a9465f6128e4118636718678963dfb5f14fdc1a1766c54b030a9e3955e876f
Contents?: true
Size: 307 Bytes
Versions: 4
Compression:
Stored size: 307 Bytes
Contents
# This migration comes from alchemy (originally 20140701160225) class AddMissingTaggableIndex < ActiveRecord::Migration[4.2] def self.up add_index :taggings, [:taggable_id, :taggable_type, :context] end def self.down remove_index :taggings, [:taggable_id, :taggable_type, :context] end end
Version data entries
4 entries across 4 versions & 1 rubygems