Skip to content

Instantly share code, notes, and snippets.

@juampynr
Created July 14, 2020 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juampynr/28b3b176e80876586544b3ded450195e to your computer and use it in GitHub Desktop.
Save juampynr/28b3b176e80876586544b3ded450195e to your computer and use it in GitHub Desktop.
Drupal 7: Extract all fields per content type
select fci.entity_type, fci.bundle, fci.field_name, fc.type, fc.module
from field_config_instance fci
inner join field_config fc on fc.id = fci.field_id
order by fci.entity_type ASC, fci.bundle ASC, fci.field_name ASC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment