· 7 years ago · Oct 12, 2018, 09:02 PM
1DROP TABLE IF EXISTS `dungeon_ranking`;
2/*!40101 SET @saved_cs_client = @@character_set_client */;
3/*!40101 SET character_set_client = utf8 */;
4CREATE TABLE `dungeon_ranking` (
5 `id` int(11) NOT NULL AUTO_INCREMENT,
6 `pid` int(11) DEFAULT NULL,
7 `level` smallint(5) DEFAULT '0',
8 `dungeon` smallint(4) DEFAULT '0',
9 `czas` int(11) DEFAULT '0',
10 `party` tinyint(1) DEFAULT '0',
11 `data` datetime DEFAULT NULL,
12 PRIMARY KEY (`id`)
13) ENGINE=InnoDB AUTO_INCREMENT=24313 DEFAULT CHARSET=latin1;
14/*!40101 SET character_set_client = @saved_cs_client */;