Summary of the "docparts_" fields in ListManager
The docparts_ table holds the language specific version of content found in the docs_ table. The docs_ table might define a Hello document, for example, which would result in the actual body of the message appearing in the docparts_ table, with one row for each language. Every entry in the docparts_ table must reference a piece of content in the docs_ table.
Primary key: UniqueID_
Body_ |
The body portion of the message. (text, NULL) |
CharSetID_ |
The character set from mimecharsets_ (int, NULL) |
DocID_ |
A reference to the content described in the docs_ table. (int, NOT NULL) |
EncodingID_ |
A reference to mimeencodings_ (int, NULL) |
HasBeenEncoded_ |
Has the data in this row already been encoded to this encoding method? (bool) |
HdrAdd_ |
Additional headers that should be added for this message. (Text, NULL) |
MimePartName_ |
The name of the content, for mime purposes. If it is an attachment, for example, is the file name of the attachment. (varchar(255), NULL) |
MimeTypeID_ |
A reference in to the mimetypes_ table telling what mime type this message is. (int, NULL) |
UniqueID_ |
An auto-incrementing field that defines a unique identifier for this row. (int, NOT NULL) |