You are here

function ad_image_update_6002 in Advertisement 6.3

Same name and namespace in other branches
  1. 6.2 image/ad_image.install \ad_image_update_6002()

Introduce remote_image field for remotely hosted images.

File

image/ad_image.install, line 150
Ad_image module database schema.

Code

function ad_image_update_6002() {
  $ret = array();
  db_add_field($ret, 'ad_image_format', 'max_size', array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => '0',
  ));
  return $ret;
}