function hosting_update_1 in Hostmaster (Aegir) 6
Implements hook_update_N().
File
- modules/
hosting/ hosting.install, line 44 - Install, update and uninstall for the hosting module.
Code
function hosting_update_1() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE type='module' and name='hosting'");
return $ret;
}