You are here

function hosting_server_update_6001 in Hosting 7.3

Same name and namespace in other branches
  1. 6.2 server/hosting_server.install \hosting_server_update_6001()
  2. 7.4 server/hosting_server.install \hosting_server_update_6001()

Implements hook_update_N().

Drop the drush_path and backup_path columns which are no longer needed.

File

server/hosting_server.install, line 137
Define the database schema and update functions for the hosting_server module.

Code

function hosting_server_update_6001() {
  $ret = array();
  db_drop_field($ret, "hosting_server", "drush_path");
  db_drop_field($ret, "hosting_server", "backup_path");
  return $ret;
}