diff options
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/hotfixes/master/2017_05_07_00_hotfixes.sql | 10 |
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; |
