Use this,
Code:
DROP TABLE IF EXISTS `questlog`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `questlog` (
`player_guid` bigint(20) unsigned NOT NULL DEFAULT '0',
`quest_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`slot` int(20) unsigned NOT NULL DEFAULT '0',
`time_left` bigint(20) NOT NULL DEFAULT '0',
`explored_area1` bigint(20) unsigned NOT NULL DEFAULT '0',
`explored_area2` bigint(20) unsigned NOT NULL DEFAULT '0',
`explored_area3` bigint(20) unsigned NOT NULL DEFAULT '0',
`explored_area4` bigint(20) unsigned NOT NULL DEFAULT '0',
`mob_kill1` bigint(20) NOT NULL DEFAULT '0',
`mob_kill2` bigint(20) NOT NULL DEFAULT '0',
`mob_kill3` bigint(20) NOT NULL DEFAULT '0',
`mob_kill4` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`player_guid`,`quest_id`)
) ENGINE=MyISAM AUTO_INCREMENT=33067588 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `questlog`
--
LOCK TABLES `questlog` WRITE;
/*!40000 ALTER TABLE `questlog` DISABLE KEYS */;
/*!40000 ALTER TABLE `questlog` ENABLE KEYS */;
UNLOCK TABLES;