You are here

function twitter_update_6508 in Twitter 6.5

Change {twitter}.in_reply_to_status_id to BIGINT.

File

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

Code

function twitter_update_6508() {
  $ret = array();
  $spec = array(
    'description' => "Unique identifier of a status this {twitter} post was replying to.",
    'type' => 'int',
    'unsigned' => TRUE,
    'size' => 'big',
    'not null' => FALSE,
    'default' => 0,
  );
  db_change_field($ret, 'twitter', 'in_reply_to_status_id', 'in_reply_to_status_id', $spec);
  return $ret;
}