You are here

function hosting_task_update_6003 in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 task/hosting_task.install \hosting_task_update_6003()
  2. 7.3 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;
}