Skip to content

Instantly share code, notes, and snippets.

@ruby232
Last active August 30, 2022 19:50
Show Gist options
  • Save ruby232/4d7bfd0a6282ab9be2fb7be0d220bd79 to your computer and use it in GitHub Desktop.
Save ruby232/4d7bfd0a6282ab9be2fb7be0d220bd79 to your computer and use it in GitHub Desktop.
Delete a field in entity type programatically
<?php
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\field\Entity\FieldConfig;
// Deleting field storage.
FieldStorageConfig::loadByName('entity_type', 'field_name')->delete();
// Deleting field.
FieldConfig::loadByName('entity_type', 'bundle', 'field_name')->delete();
@ruby232
Copy link
Author

ruby232 commented Aug 30, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment