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

Related topics

File

modules/user/user.install, line 918
Install, update and uninstall functions for the user module.

Code

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