You are here

function admin_menu_update_7300 in Administration menu 7.3

Same name and namespace in other branches
  1. 8.3 admin_menu.install \admin_menu_update_7300()

Add {cache_admin_menu} table.

File

./admin_menu.install, line 73
Install, update, and uninstall functions for the admin menu module.

Code

function admin_menu_update_7300() {
  if (!db_table_exists('cache_admin_menu')) {
    $schema = drupal_get_schema_unprocessed('system', 'cache');
    db_create_table('cache_admin_menu', $schema);
  }
}