Core/Misc: Fixes

DB: Lots of DB fixes
This commit is contained in:
hondacrx
2018-06-09 12:03:02 -04:00
parent 2d2a9eac16
commit 1289bc3ed1
38 changed files with 53938 additions and 11 deletions
@@ -0,0 +1,14 @@
--
-- Table structure for table `cfg_regions`
--
DROP TABLE IF EXISTS `cfg_regions`;
CREATE TABLE `cfg_regions` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`Tag` text,
`Raidorigin` int(10) unsigned NOT NULL DEFAULT '0',
`ChallengeOrigin` int(10) unsigned NOT NULL DEFAULT '0',
`RegionID` smallint(5) unsigned NOT NULL DEFAULT '0',
`RegionGroupMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;