From cb47605235a49bb2c6065b2e6de69b657a9c905f Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 7 Feb 2021 19:19:06 +0100 Subject: Core/Players: Implemented secondary stat diminishing --- sql/updates/hotfixes/master/2021_02_07_00_hotfixes.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sql/updates/hotfixes/master/2021_02_07_00_hotfixes.sql (limited to 'sql') 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; -- cgit v1.2.3