aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorRoc13x <roc13x@gmail.com>2018-03-05 21:50:57 +0000
committerShauren <shauren.trinity@gmail.com>2018-03-05 22:50:57 +0100
commita9f75558dc583624ea83afcd36a6cbd7a4088940 (patch)
tree7f95dd5f3ac3985178c021bf19506517cc05b4f5 /sql
parent58930d273fca5b7cd92f0f5ff987890d50373c59 (diff)
Core/Items: PvP item levels basic implementation (#20160)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/master/2018_03_05_00_hotfixes.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2018_03_05_00_hotfixes.sql b/sql/updates/hotfixes/master/2018_03_05_00_hotfixes.sql
new file mode 100644
index 00000000000..ccac08f99e7
--- /dev/null
+++ b/sql/updates/hotfixes/master/2018_03_05_00_hotfixes.sql
@@ -0,0 +1,11 @@
+--
+-- Table structure for table `pvp_item`
+--
+DROP TABLE IF EXISTS `pvp_item`;
+CREATE TABLE `pvp_item` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `ItemID` int(10) unsigned NOT NULL DEFAULT '0',
+ `ItemLevelBonus` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;