I’ve opened a database of drupal 7 and looked up in the tables node, node_revisions and node types and couldn’t find where drupal stores the actual body of the node (content).
Does anyone have a clue?
I’ve opened a database of drupal 7 and looked up in the tables node
Share
Oh, I’ve just found it. In D7 they implemented fields to allow custom fields in content.
So, the node body is considered just a field and its value is now stored in the table field_revision_body (in D7) instead of node_revision (in D6).
If you cite any references for drupal database structure that would be helpful.
Thanks for reading.