aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes
diff options
context:
space:
mode:
authorGolrag <golrag.jeremy@gmail.com>2017-06-04 16:51:47 +0200
committerShauren <shauren.trinity@gmail.com>2017-06-04 16:52:53 +0200
commitae83739ac7b4a47703f0960e22ed0caf240a023c (patch)
treeeb55677d6e903add0c5e3a5b10cf0016b535abef /sql/updates/hotfixes
parent2922c23783e2db280fd3027485927b178ae75e04 (diff)
Core/Players: Implement basics for the honor system
Closes #18480 Closes #19277
Diffstat (limited to 'sql/updates/hotfixes')
-rw-r--r--sql/updates/hotfixes/master/2017_06_04_00_hotfixes.sql67
1 files changed, 67 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2017_06_04_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_06_04_00_hotfixes.sql
new file mode 100644
index 00000000000..2a8e08c01b4
--- /dev/null
+++ b/sql/updates/hotfixes/master/2017_06_04_00_hotfixes.sql
@@ -0,0 +1,67 @@
+--
+-- Table structure for table `pvp_reward`
+--
+DROP TABLE IF EXISTS `pvp_reward`;
+CREATE TABLE `pvp_reward` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `HonorLevel` int(10) unsigned NOT NULL DEFAULT '0',
+ `Prestige` int(10) unsigned 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;
+
+--
+-- Table structure for table `prestige_level_info`
+--
+DROP TABLE IF EXISTS `prestige_level_info`;
+CREATE TABLE `prestige_level_info` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `IconID` int(10) unsigned NOT NULL DEFAULT '0',
+ `PrestigeText` text,
+ `PrestigeLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `prestige_level_info_locale`
+--
+DROP TABLE IF EXISTS `prestige_level_info_locale`;
+CREATE TABLE `prestige_level_info_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `PrestigeText_lang` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `reward_pack`
+--
+DROP TABLE IF EXISTS `reward_pack`;
+CREATE TABLE `reward_pack` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Money` int(10) unsigned NOT NULL DEFAULT '0',
+ `ArtifactXPMultiplier` float NOT NULL DEFAULT '0',
+ `ArtifactXPDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `ArtifactCategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `TitleID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Unused` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `reward_pack_x_item`
+--
+DROP TABLE IF EXISTS `reward_pack_x_item`;
+CREATE TABLE `reward_pack_x_item` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `ItemID` int(10) unsigned NOT NULL DEFAULT '0',
+ `RewardPackID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Amount` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;