You are here

function redirect_update_3 in Redirect 7.2

Same name and namespace in other branches
  1. 7 redirect.install \redirect_update_3()

Enable bootstrap status for the module.

File

./redirect.install, line 185
Install, update and uninstall functions for the redirect module.

Code

function redirect_update_3() {
  db_update('system')
    ->fields(array(
    'bootstrap' => 1,
  ))
    ->condition('type', 'module')
    ->condition('name', 'redirect')
    ->execute();
}