You are here

function exif_location_update_6001 in Exif 7

Same name and namespace in other branches
  1. 6 exif_location/exif_location.install \exif_location_update_6001()

File

exif_location/exif_location.install, line 16
This is the exif location install part

Code

function exif_location_update_6001() {
  db_update('system')
    ->fields(array(
    'weight' => -2,
  ))
    ->condition('name', 'exif_location', '=')
    ->execute();
  return t('exif_location weight has been changed.');
}