You are here

function vars_update_7203 in Variable API 7.2

Update the module weight.

File

./vars.install, line 89
Install, update and uninstall functions for the Variables API module.

Code

function vars_update_7203() {
  db_update('system')
    ->fields(array(
    'weight' => -99,
  ))
    ->condition('name', 'vars')
    ->execute();
}