DMail Milestone 1.0
Drupal Mail Client
dmail_headers_detail_table.schema
Go to the documentation of this file.
00001 <?php
00002 function dmail_headers_detail_table() {
00003   return array(
00004     'fields' => array(
00005       'msgid' => array(
00006         'type' => 'char',
00007         'length' => 64,
00008         'description' => 'The md5 of the from and the md5 of the message_id.',
00009         'not null' => TRUE,
00010       )
00011       /* I want to have common columns listed individually. TBD. */
00012       'full' => array(
00013         'type' => 'blob',
00014         'size' => 'big',
00015       ),
00016     ),
00017     'primary key' => array('msgid'),
00018   );
00019 }
All Data Structures Files Functions Variables Enumerations