# File lib/thinking_sphinx/configuration/minimum_fields.rb, line 8
  def reconcile
    return unless no_inheritance_columns?

    field_collections.each do |collection|
      collection.fields.delete_if do |field|
        field.name == 'sphinx_internal_class_name'
      end
    end
  end