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