You are here

function hosting_update_2 in Hosting 6.2

Same name and namespace in other branches
  1. 5 hosting.install \hosting_update_2()
  2. 7.4 hosting.install \hosting_update_2()
  3. 7.3 hosting.install \hosting_update_2()

Implements hook_update_N().

Update function to remove unused table

File

./hosting.install, line 58
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;
}