You are here

function twitter_update_6303 in Twitter 6.4

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

Remove passwords no longer stored/used.

File

./twitter.install, line 758
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;
}