function hosting_task_update_6001 in Hosting 7.3
Same name and namespace in other branches
- 6.2 task/hosting_task.install \hosting_task_update_6001()
- 7.4 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;
}