You are here

function tweet_feed_update_7111 in Tweet Feed 7

Add the field for holding the secure profile image for SSL enabled web sites.

File

./tweet_feed.install, line 188

Code

function tweet_feed_update_7111() {
  $schema = tweet_feed_schema();
  if (!db_field_exists('tweet_feed', 'profile_image_https_url')) {
    db_add_field('tweet_feed', 'profile_image_https_url', $schema['tweet_feed']['fields']['profile_image_https_url']);
  }
}