mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
missing part
This commit is contained in:
@@ -497,6 +497,81 @@ LOCK TABLES `character_action` WRITE;
|
||||
/*!40000 ALTER TABLE `character_action` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_archaeology_completed`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_archaeology_completed`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `character_archaeology_completed` (
|
||||
`guid` int(10) unsigned NOT NULL,
|
||||
`project` smallint(5) unsigned NOT NULL,
|
||||
`time` int(10) NOT NULL,
|
||||
`count` int(10) NOT NULL,
|
||||
PRIMARY KEY (`guid`,`project`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_archaeology_completed`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_action` WRITE;
|
||||
/*!40000 ALTER TABLE `character_archaeology_completed` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_archaeology_completed` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_archaeology_projects`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_archaeology_projects`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `character_archaeology_projects` (
|
||||
`guid` int(10) unsigned NOT NULL,
|
||||
`branch` tinyint(3) unsigned NOT NULL,
|
||||
`project` mediumint(8) unsigned NOT NULL,
|
||||
PRIMARY KEY (`guid`,`branch`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_archaeology_projects`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_archaeology_projects` WRITE;
|
||||
/*!40000 ALTER TABLE `character_archaeology_projects` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_archaeology_projects` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_archaeology_sites`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_archaeology_sites`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `character_archaeology_sites` (
|
||||
`guid` int(10) unsigned NOT NULL,
|
||||
`site` tinyint(3) unsigned NOT NULL,
|
||||
`type` smallint(5) unsigned NOT NULL,
|
||||
`finds` tinyint(3) unsigned NOT NULL,
|
||||
PRIMARY KEY (`guid`,`site`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
/*Data for the table `character_archaeology_sites` */
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_archaeology_sites`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_archaeology_sites` WRITE;
|
||||
/*!40000 ALTER TABLE `character_archaeology_sites` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_archaeology_sites` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_arena_stats`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user