function hosting_site_update_6005 in Hosting 7.4
Same name and namespace in other branches
- 6.2 site/hosting_site.install \hosting_site_update_6005()
- 7.3 site/hosting_site.install \hosting_site_update_6005()
Implements hook_update_N().
Port is no longer configured per site.
File
- site/
hosting_site.install, line 297 - Define database schema and update functions for the hosting_site module.
Code
function hosting_site_update_6005() {
$ret = array();
db_drop_field($ret, "hosting_site", "port");
return $ret;
}