You are here

function acquia_lift_update_7201 in Acquia Lift Connector 7.2

Removes some variables that are no longer needed.

File

./acquia_lift.install, line 847
Acquia Lift - Installation file.

Code

function acquia_lift_update_7201() {
  $variables = array(
    'acquia_lift_min_runtime_num',
    'acquia_lift_min_runtime_unit',
    'acquia_lift_min_decisions',
  );
  foreach ($variables as $var) {
    variable_del($var);
  }
}