function piwik_stats_update_7102 in Piwik Statistic Integration 7.2
Create piwik cache stats table.
File
- ./
piwik_stats.install, line 128 - Installation file of piwik statistical field module.
Code
function piwik_stats_update_7102() {
if (!db_table_exists('cache_piwik_stats')) {
$table = drupal_get_schema_unprocessed('system', 'cache');
$table['description'] = 'Cache table for Piwik stats module to store XML data from Piwik.';
db_create_table('cache_piwik_stats', $table);
}
}