function shorten_schema in Shorten URLs 6
Same name and namespace in other branches
- 8.2 shorten.install \shorten_schema()
- 8 shorten.install \shorten_schema()
- 7.2 shorten.install \shorten_schema()
- 7 shorten.install \shorten_schema()
Implementation of hook_schema().
File
- ./
shorten.install, line 18 - (Un)installs the Shorten module.
Code
function shorten_schema() {
$schema = array();
$schema['cache_shorten'] = drupal_get_schema_unprocessed('system', 'cache');
return $schema;
}