You are here

function redirect_404_update_8101 in Redirect 8

Remove relevancy field from the redirect_404 table.

File

modules/redirect_404/redirect_404.install, line 67
Update hooks for the redirect_404 module.

Code

function redirect_404_update_8101() {
  \Drupal::database()
    ->schema()
    ->dropField('redirect_404', 'relevancy');
}