function facets_update_8003 in Facets 8
WARNING: Facets core search support has been moved into a separate project.
If you are using this feature, you need do download the "facets_core_search" module from drupal.org."
File
- ./
facets.install, line 115  - Update hooks for the facets module.
 
Code
function facets_update_8003() {
  \Drupal::database()
    ->delete('key_value')
    ->condition('collection', 'system.schema')
    ->condition('name', 'core_search_facets')
    ->execute();
}