function admin_menu_update_6300 in Administration menu 6.3
Add {cache_admin_menu} table.
File
- ./
admin_menu.install, line 94 - Install, update, and uninstall functions for the admin menu module.
Code
function admin_menu_update_6300() {
$ret = array();
if (!db_table_exists('cache_admin_menu')) {
$schema = drupal_get_schema_unprocessed('system', 'cache');
db_create_table($ret, 'cache_admin_menu', $schema);
}
return $ret;
}