function user_update_7018

Ensure there is an index on {users}.picture.

Related topics

Archivo

drupal-7.x/modules/user/user.install, line 905
Install, update and uninstall functions for the user module.

Código

function user_update_7018() {
  if (!db_index_exists('users', 'picture')) {
    db_add_index('users', 'picture', array('picture'));
  }
}