You are here

function webform_share_update_7000 in Webform share 7

Implements hook_install().

File

./webform_share.install, line 29
Standard installation, update, uninstall scripts.

Code

function webform_share_update_7000() {
  db_update('system')
    ->condition('name', 'webform_share')
    ->condition('type', 'module')
    ->fields(array(
    'weight' => -2,
  ))
    ->execute();
}