You are here

function tweet_feed_update_7104 in Tweet Feed 7

Alter the user_id field to be a varchar for handling larger user id numbers.

File

./tweet_feed.install, line 120

Code

function tweet_feed_update_7104() {
  db_change_field('tweet_feed', 'user_id', 'user_id', array(
    'description' => 'The user ID of the poster',
    'type' => 'varchar',
    'length' => 32,
    'not null' => TRUE,
  ));
}