function hosting_platform_update_6208 in Hosting 7.4
Same name and namespace in other branches
- 6.2 platform/hosting_platform.install \hosting_platform_update_6208()
- 7.3 platform/hosting_platform.install \hosting_platform_update_6208()
Drop release_id from hosting_platform.
File
- platform/
hosting_platform.install, line 245 - Define database schema and update functions 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;
}