You are here

function hacked_schema in Hacked! 6.2

Same name and namespace in other branches
  1. 6 hacked.install \hacked_schema()
  2. 7.2 hacked.install \hacked_schema()

Implementation of hook_schema().

File

./hacked.install, line 24
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;
}