11-13-2012, 08:31 PM
-- Table structure for `postoffice`
-- ----------------------------
DROP TABLE IF EXISTS `postoffice`;
CREATE TABLE `postoffice` (
`index` int(5) NOT NULL DEFAULT '0',
`msgtype` int(5) DEFAULT NULL,
`msgcategory` int(5) DEFAULT NULL,
`recvdate` int(10) DEFAULT NULL,
PRIMARY KEY (`index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Work for me

