function statistics_counter_schema_alter in Statistics Counter 7
@file Statistics Counter
File
- ./
statistics_counter.install, line 8 - Statistics Counter
Code
function statistics_counter_schema_alter(&$schema) {
$schema['node_counter']['fields']['weekcount'] = array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
'description' => 'The total number of times the {node} has been viewed this week.',
);
$schema['node_counter']['fields']['monthcount'] = array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
'description' => 'The total number of times the {node} has been viewed this month.',
);
$schema['node_counter']['fields']['yearcount'] = array(
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
'default' => 0,
'description' => 'The total number of times the {node} has been viewed this year.',
);
}