aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes/master
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-11-12 21:53:40 +0100
committerShauren <shauren.trinity@gmail.com>2021-11-12 21:53:40 +0100
commit14b8d7d8393bb99ef66ec833bf89c3d6ce7683ab (patch)
tree4df4ff4db3bc8895488a20c92543d667e398afdb /sql/updates/hotfixes/master
parentc1915d386c192f75a164ba4157f874fbfbf663dc (diff)
Core/PacketIO: Implemented splash screen opcodes
Diffstat (limited to 'sql/updates/hotfixes/master')
-rw-r--r--sql/updates/hotfixes/master/2021_11_12_00_hotfixes.sql59
1 files changed, 59 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2021_11_12_00_hotfixes.sql b/sql/updates/hotfixes/master/2021_11_12_00_hotfixes.sql
new file mode 100644
index 00000000000..198a129275f
--- /dev/null
+++ b/sql/updates/hotfixes/master/2021_11_12_00_hotfixes.sql
@@ -0,0 +1,59 @@
+--
+-- Table structure for table `ui_splash_screen`
+--
+DROP TABLE IF EXISTS `ui_splash_screen`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `ui_splash_screen` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Header` text,
+ `TopLeftFeatureTitle` text,
+ `TopLeftFeatureDesc` text,
+ `BottomLeftFeatureTitle` text,
+ `BottomLeftFeatureDesc` text,
+ `RightFeatureTitle` text,
+ `RightFeatureDesc` text,
+ `AllianceQuestID` int(11) NOT NULL DEFAULT '0',
+ `HordeQuestID` int(11) NOT NULL DEFAULT '0',
+ `ScreenType` tinyint(4) NOT NULL DEFAULT '0',
+ `TextureKitID` int(11) NOT NULL DEFAULT '0',
+ `SoundKitID` int(11) NOT NULL DEFAULT '0',
+ `PlayerConditionID` int(11) NOT NULL DEFAULT '0',
+ `CharLevelConditionID` int(11) NOT NULL DEFAULT '0',
+ `RequiredTimeEventPassed` 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 */;
+
+--
+-- Table structure for table `ui_splash_screen_locale`
+--
+DROP TABLE IF EXISTS `ui_splash_screen_locale`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `ui_splash_screen_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Header_lang` text,
+ `TopLeftFeatureTitle_lang` text,
+ `TopLeftFeatureDesc_lang` text,
+ `BottomLeftFeatureTitle_lang` text,
+ `BottomLeftFeatureDesc_lang` text,
+ `RightFeatureTitle_lang` text,
+ `RightFeatureDesc_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 */;