You are here

function hosting_db_server_update_6001 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 db_server/hosting_db_server.install \hosting_db_server_update_6001()
  2. 7.3 db_server/hosting_db_server.install \hosting_db_server_update_6001()

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

File

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