Sha256: 63ae19a343e77ace6e987fde93d7818a52bee8a43dcf5beb367c2a4fffe46474
Contents?: true
Size: 338 Bytes
Versions: 13
Compression:
Stored size: 338 Bytes
Contents
# frozen_string_literal: true # This migration comes from acts_as_taggable_on_engine (originally 4) class AddMissingTaggableIndex < ActiveRecord::Migration[4.2] 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
13 entries across 13 versions & 1 rubygems