function hacked_schema in Hacked! 7.2
Same name and namespace in other branches
- 6.2 hacked.install \hacked_schema()
- 6 hacked.install \hacked_schema()
Implementation of hook_schema().
File
- ./
hacked.install, line 10 - Install functions for the Hacked! module.
Code
function hacked_schema() {
$tables = array();
$tables['cache_hacked'] = drupal_get_schema_unprocessed('system', 'cache');
$tables['cache_hacked']['description'] = 'Cache table for the Hacked! module. Holds hashes for the various projects.';
return $tables;
}