You are here

function hosting_task_update_6001 in Hosting 7.4

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

Implements hook_update_N().

remove the redundant hosting_queue table

File

task/hosting_task.install, line 195
Define the database schema and update functions for the hosting_task module.

Code

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