You are here

function hosting_task_update_6001 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 task/hosting_task.install \hosting_task_update_6001()
  2. 7.3 task/hosting_task.install \hosting_task_update_6001()

remove the redundant hosting_queue table

File

task/hosting_task.install, line 178

Code

function hosting_task_update_6001() {
  $ret = array();
  db_drop_table($ret, 'hosting_task_queue');
  return $ret;
}