mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Items: Implemented corruption and corruption resistance stats
This commit is contained in:
13
sql/updates/hotfixes/master/2020_06_13_00_hotfixes.sql
Normal file
13
sql/updates/hotfixes/master/2020_06_13_00_hotfixes.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
--
|
||||
-- Table structure for table `corruption_effects`
|
||||
--
|
||||
DROP TABLE IF EXISTS `corruption_effects`;
|
||||
CREATE TABLE `corruption_effects` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MinCorruption` float NOT NULL DEFAULT '0',
|
||||
`Aura` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
Reference in New Issue
Block a user