DB/Misc: Added missing sql and misc sql fixes

This commit is contained in:
hondacrx
2018-04-17 17:14:41 -04:00
parent 973f6bbdba
commit 4e4d596392
10 changed files with 20939 additions and 0 deletions
@@ -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;