aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2017-05-07 16:47:49 +0200
committerShauren <shauren.trinity@gmail.com>2017-05-07 16:47:49 +0200
commit6828c7bc2f4e05e4a3d1480f2d8e72cebc6e0a14 (patch)
treed4f73dcc8a93e9d8cc719df6cb51be26dfbd79e2 /sql/updates
parent8aa516528f80f0ff6e9d61683d23b68de2da78cd (diff)
Core/Items: Implemented new item bonus and enchantment types
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql10
1 files changed, 10 insertions, 0 deletions
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;