aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorjoschiwald <joschiwald.trinity@gmail.com>2018-04-15 21:25:24 +0200
committerjoschiwald <joschiwald.trinity@gmail.com>2018-04-15 21:31:46 +0200
commitc1d865f09bacc06cb78ed3404e8a2d20f9d907b5 (patch)
treef22f7a8d4e8b3b489c849e40455ea6935b085678 /sql/updates
parent6f0078a89daba880947a0191b92f952d39aa1fb0 (diff)
Core/DataStores: Implemented RewardPackXCurrencyType.db2
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/hotfixes/master/2018_04_15_00_hotfixes.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2018_04_15_00_hotfixes.sql b/sql/updates/hotfixes/master/2018_04_15_00_hotfixes.sql
new file mode 100644
index 00000000000..1fb655438a2
--- /dev/null
+++ b/sql/updates/hotfixes/master/2018_04_15_00_hotfixes.sql
@@ -0,0 +1,12 @@
+--
+-- Table structure for table `reward_pack_x_currency_type`
+--
+DROP TABLE IF EXISTS `reward_pack_x_currency_type`;
+CREATE TABLE `reward_pack_x_currency_type` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `CurrencyTypeID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Quantity` int(11) NOT NULL DEFAULT '0',
+ `RewardPackID` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;