diff options
| author | SnapperRy <snapperryen@gmail.com> | 2016-09-13 04:25:42 +0200 |
|---|---|---|
| committer | SnapperRy <snapperryen@gmail.com> | 2016-09-13 04:25:42 +0200 |
| commit | d1634874a8a40979867f6483818afe6d1333be47 (patch) | |
| tree | 163fd53bb44e9a69084941ba371c6f1ecb20b862 | |
| parent | 6f1e823cac8050780afb11f2befb3fb829200418 (diff) | |
Follow-up to 6f1e823.
Forgot to update base characters database. Sorry.
| -rw-r--r-- | sql/base/characters_database.sql | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index e0dfc6b4151..309f897a8f1 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -691,6 +691,29 @@ LOCK TABLES `character_equipmentsets` WRITE; 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` -- |
