class AddIndexToConfigMappings < ActiveRecord::Migration[6.0]
  def change
    add_index :config_mappings, [:configurable_id, :configurable_type]
    add_index :config_mappings, [:resourceable_id, :resourceable_type]
  end
end
