function apachesolr_stats_update_6001 in Apache Solr Statistics 6.3
Implements hook_update_N().
File
- ./
apachesolr_stats.install, line 169 - Install, update and uninstall functions for the apachesolr_stats module.
Code
function apachesolr_stats_update_6001() {
$ret = array();
db_add_field($ret, 'apachesolr_stats', 'page_id', array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => 'core_search',
));
return $ret;
}