aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2023-11-15 21:12:51 +0100
committerOvahlord <dreadkiller@gmx.de>2023-11-15 21:12:51 +0100
commit04632fa1c34e5daae0d467612fd4fd77d1fa21e7 (patch)
tree1493cb13aaa8395a396de09fb46c6628a8ffa0a9 /sql
parente06fd6bd5ad3a0d4bfc7ff23dcc3c4ba815ccd42 (diff)
Core/DataStores: load GlyphSlot.db2
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/3.4.x/2023_11_15_02_hotfixes.sql24
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/3.4.x/2023_11_15_02_hotfixes.sql b/sql/updates/hotfixes/3.4.x/2023_11_15_02_hotfixes.sql
new file mode 100644
index 00000000000..fa42068b854
--- /dev/null
+++ b/sql/updates/hotfixes/3.4.x/2023_11_15_02_hotfixes.sql
@@ -0,0 +1,24 @@
+--
+-- Table structure for table `glyph_slot`
+--
+
+DROP TABLE IF EXISTS `glyph_slot`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `glyph_slot` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Tooltip` int(11) NOT NULL DEFAULT '0',
+ `Type` int(10) 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 `glyph_slot`
+--
+
+LOCK TABLES `glyph_slot` WRITE;
+/*!40000 ALTER TABLE `glyph_slot` DISABLE KEYS */;
+/*!40000 ALTER TABLE `glyph_slot` ENABLE KEYS */;
+UNLOCK TABLES;