function smart_ip_schema in Smart IP 6
Same name and namespace in other branches
- 6.2 smart_ip.install \smart_ip_schema()
- 7.2 smart_ip.install \smart_ip_schema()
- 7 smart_ip.install \smart_ip_schema()
Implements hook_schema().
File
- ./
smart_ip.install, line 120
Code
function smart_ip_schema() {
$schema['smart_ip'] = smart_ip_schema_definition_array();
$schema['cache_smart_ip'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_smart_ip']['description'] = 'Cache table for storing temporary data during Smart IP database update.';
return $schema;
}