You are here

function twitter_update_6500 in Twitter 6.5

Removes include_retweets field.

File

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

Code

function twitter_update_6500() {
  $ret = array();
  if (db_column_exists('twitter_account', 'include_retweets')) {
    db_drop_field($ret, 'twitter_account', 'include_retweets');
  }
  return $ret;
}