cacheflush_entity.install in CacheFlush 8
Same filename and directory in other branches
Cacheflush Entity API install file.
File
modules/cacheflush_entity/cacheflush_entity.installView 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
Name | Description |
---|---|
cacheflush_entity_update_8101 | Implements hook_update_N(). |