1234567891011121314151617 |
- DROP TABLE IF EXISTS `phpcms_message`;
- CREATE TABLE `phpcms_message` (
- `messageid` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `send_from_id` char(30) NOT NULL DEFAULT '0',
- `send_to_id` char(30) NOT NULL DEFAULT '0',
- `folder` enum('all','inbox','outbox') NOT NULL,
- `status` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `message_time` int(10) unsigned NOT NULL DEFAULT '0',
- `subject` char(80) DEFAULT NULL,
- `content` text NOT NULL,
- `replyid` int(10) unsigned NOT NULL DEFAULT '0',
- `del_type` tinyint(1) unsigned DEFAULT '0',
- PRIMARY KEY (`messageid`),
- KEY `msgtoid` (`send_to_id`,`folder`),
- KEY `replyid` (`replyid`),
- KEY `folder` (`send_from_id`,`folder`)
- ) TYPE=MyISAM;
|