function hosting_task_update_6003 in Hosting 7.3
Same name and namespace in other branches
- 6.2 task/hosting_task.install \hosting_task_update_6003()
- 7.4 task/hosting_task.install \hosting_task_update_6003()
Implements hook_update_N().
Processing state constant changed to ensure proper sorting
File
- task/
hosting_task.install, line 234 - Define the database schema and update functions for the hosting_task module.
Code
function hosting_task_update_6003() {
$ret = array();
db_query("UPDATE {hosting_task} SET task_status = -1 WHERE task_status = 4");
return $ret;
}