Where in the database is a document related to a specific record in its document type table? I can't find a foreign key anywhere in CMS_Document, CMS_Class, or CMS_Tree that will allow me to pull a document's specific document type record and there doesn't appear to be a table that relates them anywhere.
I'm not looking to find a document's document type - that's pretty obviously referenced on CMS_Tree. I'm trying to find specifically which record in the doctype's table to pull for a given document. Where is that relationship stored?
Finally found it. The field is on CMS_Document. It's called DocumentForeignKeyValue. This is a FK to ItemID on the corresponding document type's table.
Use the already created views:
View_CMS_Tree_Joined
or your page type specific view:
View_NameSpace_Class_Joined
Those views already have the document, tree and page type info coupled.
Please, sign in to be able to submit a new answer.