update_schema
- Versions
- 6 – 7
update_schema()
Implementation of hook_schema().
Code
modules/update/update.install, line 36
<?php
function update_schema() {
$schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_update']['description'] = 'Cache table for the Update module to store information about available releases, fetched from central server.';
return $schema;
}
?>Login or register to post comments 