function hosting_package_update_6201 in Hosting 7.4
Same name and namespace in other branches
- 6.2 package/hosting_package.install \hosting_package_update_6201()
- 7.3 package/hosting_package.install \hosting_package_update_6201()
Allow the tracking of site-specific packages.
File
- package/
hosting_package.install, line 509 - Define database schema and update functions for the package management module.
Code
function hosting_package_update_6201() {
$ret = array();
db_add_field($ret, 'hosting_package_instance', 'platform', array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
return $ret;
}