DROP TABLE IF EXISTS `exp_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `exp_comments` ( `id` int(11) NOT NULL auto_increment, `commentable_type` varchar(50) NOT NULL, `parent_id` int(11) default NULL, PRIMARY KEY (`id`), KEY `exp_comments_index2` (`commentable_type`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `exp_comments` -- LOCK TABLES `exp_comments` WRITE; /*!40000 ALTER TABLE `exp_comments` DISABLE KEYS */; INSERT INTO `exp_comments` VALUES (1,'ExpStory',NULL),(4,'ExpChart',NULL),(5,'ExpChart',NULL),(6,'ExpChart',NULL),(7,'ExpChart',NULL),(8,'ExpChart',NULL),(9,'ExpStory',NULL),(10,'ExpChart',NULL); /*!40000 ALTER TABLE `exp_comments` ENABLE KEYS */; UNLOCK TABLES;