You are here

cacheflush_entity.install in CacheFlush 8

Same filename and directory in other branches
  1. 7.3 modules/cacheflush_entity/cacheflush_entity.install

Cacheflush Entity API install file.

File

modules/cacheflush_entity/cacheflush_entity.install
View source
<?php

/**
 * @file
 * Cacheflush Entity API install file.
 */
use Drupal\Core\Database\Database;

/**
 * Implements hook_update_N().
 */
function cacheflush_entity_update_8101() {
  Database::getConnection()
    ->schema()
    ->dropField('cacheflush', 'langcode');
}

Functions