You are here

function hosting_web_server_update_6001 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 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()

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

File

web_server/hosting_web_server.install, line 44

Code

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