Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / field_purge_field_storage.twig
1 /**
2  * Implements hook_field_purge_field_storage().
3  */
4 function {{ machine_name }}_field_purge_field_storage(\Drupal\field\Entity\FieldStorageConfig $field_storage) {
5   db_delete('my_module_field_storage_info')
6     ->condition('uuid', $field_storage->uuid())
7     ->execute();
8 }