From d68abc1652d840303fa37a35caadf31d15633332 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Thu, 23 Nov 2023 14:00:24 +0100 Subject: Core/DataStores: load ScalingStatDistribution.db2 and ScalingStatValues.db2 --- .../hotfixes/3.4.x/2023_11_23_00_hotfixes.sql | 91 ++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 sql/updates/hotfixes/3.4.x/2023_11_23_00_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/3.4.x/2023_11_23_00_hotfixes.sql b/sql/updates/hotfixes/3.4.x/2023_11_23_00_hotfixes.sql new file mode 100644 index 00000000000..6b58c6925c8 --- /dev/null +++ b/sql/updates/hotfixes/3.4.x/2023_11_23_00_hotfixes.sql @@ -0,0 +1,91 @@ +-- +-- Table structure for table `scaling_stat_distribution` +-- + +DROP TABLE IF EXISTS `scaling_stat_distribution`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scaling_stat_distribution` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PlayerLevelToItemLevelCurveID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinLevel` int(11) NOT NULL DEFAULT '0', + `MaxLevel` int(11) NOT NULL DEFAULT '0', + `Bonus1` int(10) NOT NULL DEFAULT '0', + `Bonus2` int(10) NOT NULL DEFAULT '0', + `Bonus3` int(10) NOT NULL DEFAULT '0', + `Bonus4` int(10) NOT NULL DEFAULT '0', + `Bonus5` int(10) NOT NULL DEFAULT '0', + `Bonus6` int(10) NOT NULL DEFAULT '0', + `Bonus7` int(10) NOT NULL DEFAULT '0', + `Bonus8` int(10) NOT NULL DEFAULT '0', + `Bonus9` int(10) NOT NULL DEFAULT '0', + `Bonus10` int(10) NOT NULL DEFAULT '0', + `StatID1` int(10) NOT NULL DEFAULT '0', + `StatID2` int(10) NOT NULL DEFAULT '0', + `StatID3` int(10) NOT NULL DEFAULT '0', + `StatID4` int(10) NOT NULL DEFAULT '0', + `StatID5` int(10) NOT NULL DEFAULT '0', + `StatID6` int(10) NOT NULL DEFAULT '0', + `StatID7` int(10) NOT NULL DEFAULT '0', + `StatID8` int(10) NOT NULL DEFAULT '0', + `StatID9` int(10) NOT NULL DEFAULT '0', + `StatID10` int(10) 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 `scaling_stat_distribution` +-- + +LOCK TABLES `scaling_stat_distribution` WRITE; +/*!40000 ALTER TABLE `scaling_stat_distribution` DISABLE KEYS */; +/*!40000 ALTER TABLE `scaling_stat_distribution` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scaling_stat_values` +-- + +DROP TABLE IF EXISTS `scaling_stat_values`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scaling_stat_values` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Charlevel` int(11) NOT NULL DEFAULT '0', + `WeaponDPS1H` int(11) NOT NULL DEFAULT '0', + `WeaponDPS2h` int(11) NOT NULL DEFAULT '0', + `SpellcasterDPS1H` int(11) NOT NULL DEFAULT '0', + `SpellcasterDPS2H` int(11) NOT NULL DEFAULT '0', + `RangedDPS` int(11) NOT NULL DEFAULT '0', + `WandDPS` int(11) NOT NULL DEFAULT '0', + `SpellPower` int(11) NOT NULL DEFAULT '0', + `ShoulderBudget` int(11) NOT NULL DEFAULT '0', + `TrinketBudget` int(11) NOT NULL DEFAULT '0', + `WeaponBudget` int(11) NOT NULL DEFAULT '0', + `PrimaryBudget` int(11) NOT NULL DEFAULT '0', + `RangedBudget` int(11) NOT NULL DEFAULT '0', + `TertiaryBudget` int(11) NOT NULL DEFAULT '0', + `ClothShoulderArmor` int(11) NOT NULL DEFAULT '0', + `LeatherShoulderArmor` int(11) NOT NULL DEFAULT '0', + `MailShoulderArmor` int(11) NOT NULL DEFAULT '0', + `PlateShoulderArmor` int(11) NOT NULL DEFAULT '0', + `ClothCloakArmor` int(11) NOT NULL DEFAULT '0', + `ClothChestArmor` int(11) NOT NULL DEFAULT '0', + `LeatherChestArmor` int(11) NOT NULL DEFAULT '0', + `MailChestArmor` int(11) NOT NULL DEFAULT '0', + `PlateChestArmor` int(11) 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 `scaling_stat_values` +-- + +LOCK TABLES `scaling_stat_values` WRITE; +/*!40000 ALTER TABLE `scaling_stat_values` DISABLE KEYS */; +/*!40000 ALTER TABLE `scaling_stat_values` ENABLE KEYS */; +UNLOCK TABLES; -- cgit v1.2.3