aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2023-11-27 22:04:39 +0100
committerOvahlord <dreadkiller@gmx.de>2023-11-27 22:04:39 +0100
commitbbb320f39013bb540d69a36fe7be72c1ac6ba9d3 (patch)
tree1c52714724cc6009fefe363c248fd9d11a05980c /sql/updates
parentcb5f57a8b39c3c6250b487990a414b55f2a44eab (diff)
Core/DataStores: load ItemRandomProperties.db2 and ItemRandomSuffix.db2
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/hotfixes/3.4.x/2023_11_27_00_hotfixes.sql134
1 files changed, 134 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/3.4.x/2023_11_27_00_hotfixes.sql b/sql/updates/hotfixes/3.4.x/2023_11_27_00_hotfixes.sql
new file mode 100644
index 00000000000..2f939e108a9
--- /dev/null
+++ b/sql/updates/hotfixes/3.4.x/2023_11_27_00_hotfixes.sql
@@ -0,0 +1,134 @@
+--
+-- Table structure for table `item_random_properties`
+--
+
+DROP TABLE IF EXISTS `item_random_properties`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `item_random_properties` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Name` text,
+ `Enchantment1` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment2` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment3` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment4` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment5` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`VerifiedBuild`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item_random_properties`
+--
+
+LOCK TABLES `item_random_properties` WRITE;
+/*!40000 ALTER TABLE `item_random_properties` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item_random_properties` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item_random_properties_locale`
+--
+
+DROP TABLE IF EXISTS `item_random_properties_locale`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `item_random_properties_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Name_lang` text,
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
+/*!50500 PARTITION BY LIST COLUMNS(locale)
+(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
+ PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
+ PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
+ PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
+ PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
+ PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
+ PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
+ PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
+ PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
+ PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item_random_properties_locale`
+--
+
+LOCK TABLES `item_random_properties_locale` WRITE;
+/*!40000 ALTER TABLE `item_random_properties_locale` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item_random_properties_locale` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item_random_suffix`
+--
+
+DROP TABLE IF EXISTS `item_random_suffix`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `item_random_suffix` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Name` text,
+ `Enchantment1` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment2` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment3` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment4` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Enchantment5` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `AllocationPct1` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `AllocationPct2` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `AllocationPct3` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `AllocationPct4` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `AllocationPct5` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`VerifiedBuild`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item_random_suffix`
+--
+
+LOCK TABLES `item_random_suffix` WRITE;
+/*!40000 ALTER TABLE `item_random_suffix` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item_random_suffix` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item_random_suffix_locale`
+--
+
+DROP TABLE IF EXISTS `item_random_suffix_locale`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `item_random_suffix_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Name_lang` text,
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
+/*!50500 PARTITION BY LIST COLUMNS(locale)
+(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
+ PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
+ PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
+ PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
+ PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
+ PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
+ PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
+ PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
+ PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
+ PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item_random_suffix_locale`
+--
+
+LOCK TABLES `item_random_suffix_locale` WRITE;
+/*!40000 ALTER TABLE `item_random_suffix_locale` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item_random_suffix_locale` ENABLE KEYS */;
+UNLOCK TABLES;