You are here

function twitter_update_6503 in Twitter 6.5

Makes the import field not enabled by default at twitter_account table.

File

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

Code

function twitter_update_6503() {
  $ret = array();
  $spec = array(
    'description' => "Boolean flag indicating whether the {twitter_user}'s posts should be pulled in by the site.",
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  );
  db_change_field($ret, 'twitter_account', 'import', 'import', $spec);
  return $ret;
}