function hosting_update_2 in Hosting 7.4
Same name and namespace in other branches
- 5 hosting.install \hosting_update_2()
- 6.2 hosting.install \hosting_update_2()
- 7.3 hosting.install \hosting_update_2()
Implements hook_update_N().
Update function to remove unused table
File
- ./
hosting.install, line 81 - Define database schemas and update functions for the hosting module.
Code
function hosting_update_2() {
$ret = array();
$ret[] = update_sql("DROP TABLE {hosting_config_template}");
return $ret;
}