You are here

function twitter_update_7506 in Twitter 7.6

Same name and namespace in other branches
  1. 7.5 twitter.install \twitter_update_7506()

Change {twitter}.in_reply_to_user_id to BIGINT.

File

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

Code

function twitter_update_7506() {
  $spec = array(
    'description' => "Unique identifier for the {twitter_account} this post was replying to.",
    'type' => 'int',
    'unsigned' => TRUE,
    'size' => 'big',
    'not null' => FALSE,
    'default' => 0,
  );
  db_change_field('twitter', 'in_reply_to_user_id', 'in_reply_to_user_id', $spec);
}