function hosting_server_update_6001 in Hosting 6.2
Same name and namespace in other branches
- 7.4 server/hosting_server.install \hosting_server_update_6001()
- 7.3 server/hosting_server.install \hosting_server_update_6001()
Drop the drush_path and backup_path columns which are no longer needed.
File
- server/
hosting_server.install, line 124
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;
}