You are here

function hosting_web_server_update_6001 in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 web_server/hosting_web_server.install \hosting_web_server_update_6001()
  2. 7.3 web_server/hosting_web_server.install \hosting_web_server_update_6001()

Implements hook_update_N().

Remove the web_group field which now needs to be consistent between servers.

File

web_server/hosting_web_server.install, line 60
Update functions for the hosting_web_server module.

Code

function hosting_web_server_update_6001() {
  $ret = array();
  db_drop_field($ret, "hosting_web_server", "web_group");
  return $ret;
}