function node_update_7003
Remove the node_counter if the statistics module is uninstalled.
Related topics
Archivo
- drupal-7.x/
modules/ node/ node.install, line 562 - Install, update and uninstall functions for the node module.
Código
function node_update_7003() {
if (drupal_get_installed_schema_version('statistics') == SCHEMA_UNINSTALLED) {
db_drop_table('node_counter');
}
}