feat(DB): release ACDB 8.0.0 (#14833)
This commit is contained in:
parent
e7cbc80a91
commit
785bb5ed6b
901 changed files with 58864 additions and 36806 deletions
|
|
@ -1,44 +1,46 @@
|
|||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- Host: 127.0.0.1
|
||||
-- Server version: 8.0.29 - MySQL Community Server - GPL
|
||||
-- Server OS: Win64
|
||||
-- HeidiSQL Version: 12.0.0.6468
|
||||
-- --------------------------------------------------------
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_world.spell_proc
|
||||
-- Dumping structure for table acore_world.spell_proc
|
||||
DROP TABLE IF EXISTS `spell_proc`;
|
||||
CREATE TABLE IF NOT EXISTS `spell_proc` (
|
||||
`spellId` mediumint NOT NULL DEFAULT '0',
|
||||
`schoolMask` tinyint NOT NULL DEFAULT '0',
|
||||
`spellFamilyName` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask0` int unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask1` int unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask2` int unsigned NOT NULL DEFAULT '0',
|
||||
`typeMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`spellTypeMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`spellPhaseMask` int NOT NULL DEFAULT '0',
|
||||
`hitMask` int NOT NULL DEFAULT '0',
|
||||
`attributesMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`ratePerMinute` float NOT NULL DEFAULT '0',
|
||||
`chance` float NOT NULL DEFAULT '0',
|
||||
`cooldown` float NOT NULL DEFAULT '0',
|
||||
`charges` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`spellId`),
|
||||
CONSTRAINT `spell_proc_chk_1` CHECK ((`cooldown` >= 0))
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
`SpellId` int NOT NULL DEFAULT '0',
|
||||
`SchoolMask` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyName` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyMask0` int unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyMask1` int unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyMask2` int unsigned NOT NULL DEFAULT '0',
|
||||
`ProcFlags` int unsigned NOT NULL DEFAULT '0',
|
||||
`SpellTypeMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`SpellPhaseMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`HitMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`AttributesMask` int unsigned NOT NULL DEFAULT '0',
|
||||
`ProcsPerMinute` float NOT NULL DEFAULT '0',
|
||||
`Chance` float NOT NULL DEFAULT '0',
|
||||
`Cooldown` int unsigned NOT NULL DEFAULT '0',
|
||||
`Charges` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`SpellId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_world.spell_proc: 0 rows
|
||||
-- Dumping data for table acore_world.spell_proc: 0 rows
|
||||
DELETE FROM `spell_proc`;
|
||||
/*!40000 ALTER TABLE `spell_proc` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `spell_proc` ENABLE KEYS */;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue