function geocoder_schema in Geocoder 7
Same name and namespace in other branches
- 7.2 geocoder.install \geocoder_schema()
Implements hook_schema().
File
- ./
geocoder.install, line 11 - Install, update and uninstall functions for the Geocoder module.
Code
function geocoder_schema() {
$schema['cache_geocoder'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_geocoder']['description'] = 'Cache table for the geocoder module to store geocoded locations.';
return $schema;
}