aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-12-20 22:49:53 +0100
committerShauren <shauren.trinity@gmail.com>2020-12-20 22:49:53 +0100
commitfbbf40981cc14523fa181cf6125336b254e8ae4d (patch)
treeec34a15277839c75163b2c9a2ffa84641ce2a662 /sql/updates
parent15611810daa19c2fbcccf6a4d8f7ba95d7ff7a06 (diff)
Core/DataStores: Implement optional data in hotfix packets
Closes #25738
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/hotfixes/master/2020_12_20_00_hotfixes.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2020_12_20_00_hotfixes.sql b/sql/updates/hotfixes/master/2020_12_20_00_hotfixes.sql
new file mode 100644
index 00000000000..dc939580db6
--- /dev/null
+++ b/sql/updates/hotfixes/master/2020_12_20_00_hotfixes.sql
@@ -0,0 +1,15 @@
+--
+-- Table structure for table `hotfix_optional_data`
+--
+DROP TABLE IF EXISTS `hotfix_optional_data`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `hotfix_optional_data` (
+ `TableHash` int(10) unsigned NOT NULL,
+ `RecordId` int(10) unsigned NOT NULL,
+ `locale` varchar(4) NOT NULL,
+ `Key` int(10) unsigned NOT NULL,
+ `Data` blob NOT NULL,
+ `VerifiedBuild` int(11) NOT NULL DEFAULT '0'
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;