class ActiveRecord::ConnectionAdapters::ConnectionPool

def new_connection

def new_connection
  Base.public_send(db_config.adapter_method, db_config.configuration_hash).tap do |conn|
    conn.check_version
  end
end