You are here

function update_install in Drupal 6

Same name and namespace in other branches
  1. 8 core/modules/update/update.install \update_install()
  2. 7 modules/update/update.install \update_install()
  3. 9 core/modules/update/update.install \update_install()
  4. 10 core/modules/update/update.install \update_install()

Implementation of hook_install().

File

modules/update/update.install, line 6

Code

function update_install() {

  // Create cache table.
  drupal_install_schema('update');

  // Remove stale variables from update_status 5.x contrib, if any.
  _update_remove_update_status_variables();
}