aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-02-07 19:19:06 +0100
committerShauren <shauren.trinity@gmail.com>2021-02-07 19:19:06 +0100
commitcb47605235a49bb2c6065b2e6de69b657a9c905f (patch)
tree0bfd95f29afdcd4b1f490ee4cf96f3d7c5a319b1 /sql/updates
parent5a7560e57c37fbda511b492ea7d7c47f8e68123f (diff)
Core/Players: Implemented secondary stat diminishing
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/hotfixes/master/2021_02_07_00_hotfixes.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2021_02_07_00_hotfixes.sql b/sql/updates/hotfixes/master/2021_02_07_00_hotfixes.sql
new file mode 100644
index 00000000000..063dc163473
--- /dev/null
+++ b/sql/updates/hotfixes/master/2021_02_07_00_hotfixes.sql
@@ -0,0 +1,11 @@
+--
+-- Table structure for table `global_curve`
+--
+DROP TABLE IF EXISTS `global_curve`;
+CREATE TABLE `global_curve` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `CurveID` int(11) NOT NULL DEFAULT '0',
+ `Type` 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;