function ad_image_update_6001 in Advertisement 6.3
Same name and namespace in other branches
- 6.2 image/ad_image.install \ad_image_update_6001()
Introduce remote_image field for remotely hosted images.
File
- image/
ad_image.install, line 135 - Ad_image module database schema.
Code
function ad_image_update_6001() {
$ret = array();
db_add_field($ret, 'ad_image', 'remote_image', array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
));
return $ret;
}