# File lib/thinking_sphinx/configuration/consistent_ids.rb, line 8
  def reconcile
    return unless sphinx_internal_ids.any? { |attribute|
      attribute.type == :bigint
    }

    sphinx_internal_ids.each do |attribute|
      attribute.type = :bigint
    end
  end