You are here

function simple_sitemap_views_update_8302 in Simple XML sitemap 4.x

Same name and namespace in other branches
  1. 8.3 modules/simple_sitemap_views/simple_sitemap_views.install \simple_sitemap_views_update_8302()

Remove unnecessary indexes.

File

modules/simple_sitemap_views/simple_sitemap_views.install, line 113
Install and uninstall hooks for the simple_sitemap_views module.

Code

function simple_sitemap_views_update_8302() {
  $schema = \Drupal::database()
    ->schema();
  $schema
    ->dropIndex('simple_sitemap_views', 'view');
  $schema
    ->dropIndex('simple_sitemap_views', 'display');
}