You are here

function advagg_update_8302 in Advanced CSS/JS Aggregation 8.4

Same name and namespace in other branches
  1. 8.3 advagg.install \advagg_update_8302()

Implements hook_update_N().

Remove advagg_bundler module from system schema.

File

./advagg.install, line 183
Handles Advanced Aggregation installation and upgrade tasks.

Code

function advagg_update_8302() {
  \Drupal::database()
    ->delete('key_value')
    ->condition('collection', 'system.schema')
    ->condition('name', 'advagg_bundler')
    ->execute();
}