You are here

function file_force_update_7001 in File Force Download 7

Update module weight for D6 upgrades.

File

./file_force.install, line 59

Code

function file_force_update_7001() {
  $update = db_update('system')
    ->condition('name', 'file_force')
    ->condition('type', 'module')
    ->fields(array(
    'weight' => 10,
  ))
    ->execute();
}