You are here

function override_node_options_update_7114 in Override Node Options 7

Update the module weight.

File

./override_node_options.install, line 31
Install, update and uninstall functions for the override_node_options module.

Code

function override_node_options_update_7114() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'override_node_options', '=')
    ->execute();
}