You are here

function hosting_db_server_update_6001 in Hosting 7.3

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

Implements hook_update_N().

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

File

db_server/hosting_db_server.install, line 88
Define the database schema and update functions 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;
}