DMail Milestone 1.0
Drupal Mail Client
dmail_headers_detail_table.schema File Reference

Go to the source code of this file.

Functions

 dmail_headers_detail_table ()

Function Documentation

dmail_headers_detail_table ( )

Definition at line 2 of file dmail_headers_detail_table.schema.

Referenced by dmail_schema_0().

                                      {
  return array(
    'fields' => array(
      'msgid' => array(
        'type' => 'char',
        'length' => 64,
        'description' => 'The md5 of the from and the md5 of the message_id.',
        'not null' => TRUE,
      )
      /* I want to have common columns listed individually. TBD. */
      'full' => array(
        'type' => 'blob',
        'size' => 'big',
      ),
    ),
    'primary key' => array('msgid'),
  );
}
All Data Structures Files Functions Variables Enumerations