Sha256: af90df7ab94516d994854dd9081dbdaf47aea64f7608a99c3ed5da01f65b9405
Contents?: true
Size: 307 Bytes
Versions: 8
Compression:
Stored size: 307 Bytes
Contents
# 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
8 entries across 8 versions & 1 rubygems