function piwik_stats_schema in Piwik Statistic Integration 7.2
Same name and namespace in other branches
- 7 piwik_stats.install \piwik_stats_schema()
Implements hook_schema().
File
- ./
piwik_stats.install, line 10 - Installation file of piwik statistical field module.
Code
function piwik_stats_schema() {
$table = drupal_get_schema_unprocessed('system', 'cache');
$table['description'] = 'Cache table for Piwik stats module to store XML data from Piwik.';
$schema['cache_piwik_stats'] = $table;
return $schema;
}