Sha256: a03d81e4f6c43c04c98be6bb6caf3a515823ffe7aeb613b28bab343e773395d8
Contents?: true
Size: 479 Bytes
Versions: 4
Compression:
Stored size: 479 Bytes
Contents
# This migration comes from acts_as_taggable_on_engine (originally 4) if ActiveRecord.gem_version >= Gem::Version.new('5.0') class AddMissingTaggableIndex < ActiveRecord::Migration[4.2]; end else class AddMissingTaggableIndex < ActiveRecord::Migration; end end AddMissingTaggableIndex.class_eval do def self.up add_index :taggings, %i[taggable_id taggable_type context] end def self.down remove_index :taggings, %i[taggable_id taggable_type context] end end
Version data entries
4 entries across 4 versions & 1 rubygems