You are here

function hosting_site_update_6006 in Hostmaster (Aegir) 6

Remove the ssl configuration which should be in a separate table.

File

modules/hosting/site/hosting_site.install, line 247

Code

function hosting_site_update_6006() {
  $ret = array();
  db_drop_field($ret, "hosting_site", "`ssl`");
  db_drop_field($ret, "hosting_site", "ssl_redirect");
  return $ret;
}