aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-06-06 20:57:09 +0200
committerShauren <shauren.trinity@gmail.com>2021-06-06 20:57:09 +0200
commit5134622a75bdc8ffafb0d86e0c0275d731385d0c (patch)
tree6af6da0f37e6f11177eade7074d8ce2d57549d15 /sql
parent2f8e411ac7d357fdd861da2f3cfc9cc2542c2a40 (diff)
Core/DataStores: Load QuestLineXQuest.db2
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2021_06_06_03_hotfixes.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2021_06_06_03_hotfixes.sql b/sql/updates/hotfixes/master/2021_06_06_03_hotfixes.sql
new file mode 100644
index 00000000000..d3628207028
--- /dev/null
+++ b/sql/updates/hotfixes/master/2021_06_06_03_hotfixes.sql
@@ -0,0 +1,15 @@
+--
+-- Table structure for table `quest_line_x_quest`
+--
+DROP TABLE IF EXISTS `quest_line_x_quest`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `quest_line_x_quest` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `QuestLineID` int(10) unsigned NOT NULL DEFAULT '0',
+ `QuestID` int(10) unsigned NOT NULL DEFAULT '0',
+ `OrderIndex` 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 */;