function hosting_update_2 in Hostmaster (Aegir) 6
Implements hook_update_N().
Update function to remove unused table
File
- modules/
hosting/ hosting.install, line 55 - Install, update and uninstall for the hosting module.
Code
function hosting_update_2() {
$ret = array();
$ret[] = update_sql("DROP TABLE {hosting_config_template}");
return $ret;
}