You are here

function hosting_package_update_6201 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 package/hosting_package.install \hosting_package_update_6201()
  2. 7.3 package/hosting_package.install \hosting_package_update_6201()

Allow the tracking of site-specific packages.

File

package/hosting_package.install, line 477
Install, update and uninstall 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;
}