You are here

function twitter_update_7300 in Twitter 7.5

Same name and namespace in other branches
  1. 7.6 twitter.install \twitter_update_7300()
  2. 7.3 twitter.install \twitter_update_7300()
  3. 7.4 twitter.install \twitter_update_7300()

Removes password field

File

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

Code

function twitter_update_7300() {
  db_drop_field('twitter_account', 'password');
  return t('Password field was removed from Twitter accounts.');
}