You are here

function twitter_update_6303 in Twitter 6.5

Same name and namespace in other branches
  1. 6.3 twitter.install \twitter_update_6303()
  2. 6.4 twitter.install \twitter_update_6303()

Remove passwords no longer stored/used.

File

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

Code

function twitter_update_6303() {
  $ret = array();
  db_drop_field($ret, 'twitter_account', 'password');
  return $ret;
}