You are here

function contact_save_update_7001 in Contact Save 7

Update the module weight.

File

./contact_save.install, line 93
Install, update, and uninstall functions for the contact_save module.

Code

function contact_save_update_7001() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('type', 'module')
    ->condition('name', 'contact_save')
    ->execute();
}