user_messages
CREATE TABLE IF NOT EXISTS `{PREFIX}user_messages` (
`id` int(10) NOT NULL auto_increment,
`type` varchar(15) NOT NULL default '',
`subject` varchar(60) NOT NULL default '',
`message` text,
`sender` int(10) NOT NULL default '0',
`recipient` int(10) NOT NULL default '0',
`private` tinyint(4) NOT NULL default '0',
`postdate` int(20) NOT NULL default '0',
`messageread` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM COMMENT='Contains messages for the Content Manager messaging system.';