You are here

function hosting_db_server_update_6001 in Hostmaster (Aegir) 6

Get rid of the db type value, it duplicates the service info

File

modules/hosting/db_server/hosting_db_server.install, line 92
Install, update and uninstall for the database server module.

Code

function hosting_db_server_update_6001() {
  $ret = array();
  db_drop_field($ret, 'hosting_db_server', 'db_type');
  return $ret;
}