You are here

function twitter_update_6515 in Twitter 6.5

Add index on {twitter_account}.uid.

File

./twitter.install, line 1120
Install, update and uninstall functions for the twitter module.

Code

function twitter_update_6515() {
  $ret = array();
  db_add_index($ret, 'twitter_account', 'uid', array(
    'uid',
  ));
  return $ret;
}