mysql> show create table post\G show create table page \G
*************************** 1. row ***************************
Table: post
Create Table: CREATE TABLE `post` (
`id` int(32) NOT NULL AUTO_INCREMENT,
`post_id` varchar(48) DEFAULT NULL,
`page_id` int(11) DEFAULT NULL,
`seq` int(11) DEFAULT NULL,
`date` varchar(13) DEFAULT NULL,
`data` longblob,
`status` varchar(40) DEFAULT NULL,
`time_stamp` int(11) DEFAULT NULL,
`who` varchar(60) DEFAULT NULL,
`time` float DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `post_id` (`post_id`),
KEY `page_id` (`page_id`),
KEY `IDX_FIELD2` (`post_id`),
KEY `status_time_stamp_id` (`status`,`time_stamp`,`id`),
KEY `status_post_id_time_stamp_id` (`status`,`post_id`,`time_stamp`,`id`),
KEY `id_status_timestamp` (`id`,`status`,`time_stamp`)
) ENGINE=InnoDB AUTO_INCREMENT=3472802 DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
*************************** 1. row ***************************
Table: page
Create Table: CREATE TABLE `page` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=745 DEFAULT CHARSET=latin1
1 row in set (0.01 sec)