From 6828c7bc2f4e05e4a3d1480f2d8e72cebc6e0a14 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 7 May 2017 16:47:49 +0200 Subject: Core/Items: Implemented new item bonus and enchantment types --- sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql new file mode 100644 index 00000000000..2c9459f3fdd --- /dev/null +++ b/sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql @@ -0,0 +1,10 @@ +-- +-- Table structure for table `artifact_power_picker` +-- +DROP TABLE IF EXISTS `artifact_power_picker`; +CREATE TABLE `artifact_power_picker` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- cgit v1.2.3