You are here

function hosting_platform_update_6208 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 platform/hosting_platform.install \hosting_platform_update_6208()
  2. 7.3 platform/hosting_platform.install \hosting_platform_update_6208()

Drop release_id from hosting_platform.

File

platform/hosting_platform.install, line 205
Install, update and uninstall for the Platforms module.

Code

function hosting_platform_update_6208() {
  $ret = array();
  if (db_column_exists('hosting_platform', 'release_id')) {
    db_drop_field($ret, 'hosting_platform', 'release_id');
  }
  return $ret;
}