function user_update_dependencies

Implements hook_update_dependencies().

File

drupal/core/modules/user/user.install, line 382
Install, update and uninstall functions for the user module.

Code

function user_update_dependencies() {

  // Convert user picture to field after the fields and instances are converted
  // to ConfigEntities.
  $dependencies['user'][8011] = array(
    'field' => 8003,
  );
  return $dependencies;
}