You are here

function hosting_queued_update_6200 in Hosting 7.3

Same name and namespace in other branches
  1. 6.2 queued/hosting_queued.install \hosting_queued_update_6200()
  2. 7.4 queued/hosting_queued.install \hosting_queued_update_6200()

Implements hook_update_N().

Rename the module variables to hosting_queued

File

queued/hosting_queued.install, line 34
Install, update and uninstall functions for the hosting_queued module.

Code

function hosting_queued_update_6200() {
  $ret = array();
  $ret[] = update_sql("UPDATE {variable} SET name = REPLACE(name, 'hosting_queue_runner', 'hosting_queued') WHERE name LIKE 'hosting_queue_runner%'");
  return $ret;
}