mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-14 05:59:29 +01:00
Core/DataStores: Implemented RewardPackXCurrencyType.db2
This commit is contained in:
12
sql/updates/hotfixes/master/2018_04_15_00_hotfixes.sql
Normal file
12
sql/updates/hotfixes/master/2018_04_15_00_hotfixes.sql
Normal file
@@ -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;
|
||||
Reference in New Issue
Block a user