You are here

function hosting_site_update_6006 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 site/hosting_site.install \hosting_site_update_6006()
  2. 7.3 site/hosting_site.install \hosting_site_update_6006()

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

File

site/hosting_site.install, line 251

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;
}