You are here

function asaf_update_7001 in Asaf (ajax submit for any form) 7

Update module weight

File

./asaf.install, line 13

Code

function asaf_update_7001() {
  db_update('system')
    ->fields(array(
    'weight' => 8192,
  ))
    ->condition('name', 'asaf', '=')
    ->execute();
}