You are here

function twitter_update_6007 in Twitter 6.4

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

File

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

Code

function twitter_update_6007() {
  $ret = array();
  db_change_field($ret, 'twitter_account', 'last_refresh', 'last_refresh', array(
    'description' => t("A UNIX timestamp marking the date Twitter statuses were last fetched on."),
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}