function system_update_7005

Remove throttle columns and variables.

Related topics

File

drupal/modules/system/system.install, line 1983
Install, update and uninstall functions for the system module.

Code

function system_update_7005() {
  db_drop_field('blocks', 'throttle');
  db_drop_field('system', 'throttle');
  variable_del('throttle_user');
  variable_del('throttle_anonymous');
  variable_del('throttle_level');
  variable_del('throttle_probability_limiter');
}