Sha256: 6e64ba27f252afd4770873c47eb67e25be84952b87f3376a2751be2b8fcfe6dd
Contents?: true
Size: 302 Bytes
Versions: 8
Compression:
Stored size: 302 Bytes
Contents
# This migration comes from alchemy (originally 20140701160225) class AddMissingTaggableIndex < ActiveRecord::Migration 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
8 entries across 8 versions & 1 rubygems