DROP TABLE IF EXISTS `{p}pm`;
CREATE TABLE `{p}pm` (
`id` int(11) NOT NULL auto_increment,
`user_id` int(11) NOT NULL default '0',
`author` varchar(25) NOT NULL,
`author_id` int(11) NOT NULL default '0',
`subject` varchar(100) NOT NULL,
`date` datetime default NULL,
`text` text NOT NULL,
`read` tinyint(1) NOT NULL default '0',
`folder` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET={ch};