function update_schema
Same name and namespace in other branches
- 6.x drupal-6.x/modules/update/update.install \update_schema()
Implements hook_schema().
Archivo
- drupal-7.x/
modules/ update/ update.install, line 62 - Install, update, and uninstall functions for the Update Manager module.
Código
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;
}