mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Follow-up to 6f1e823.
Forgot to update base characters database. Sorry.
This commit is contained in:
@@ -690,6 +690,29 @@ LOCK TABLES `character_equipmentsets` WRITE;
|
||||
/*!40000 ALTER TABLE `character_equipmentsets` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_fishingsteps`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_fishingsteps`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `character_fishingsteps` (
|
||||
`guid` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`fishingSteps` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=INNODB DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_fishingsteps`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_fishingsteps` WRITE;
|
||||
/*!40000 ALTER TABLE `character_fishingsteps` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_fishingsteps` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_gifts`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user