feat(DB): release ACDB 7.0.0 (#12811)

* feat(DB): release ACDB 7.0.0

* cleanup

* we try sourcery
This commit is contained in:
Kitzunu
2022-08-21 12:31:37 +02:00
committed by GitHub
parent 4cd3b9c203
commit 3daa8e2146
739 changed files with 197091 additions and 167873 deletions

View File

@@ -15,23 +15,23 @@
-- Dumpar struktur för tabell acore_characters.groups
DROP TABLE IF EXISTS `groups`;
CREATE TABLE IF NOT EXISTS `groups` (
`guid` INT unsigned NOT NULL,
`leaderGuid` INT unsigned NOT NULL,
`lootMethod` TINYINT unsigned NOT NULL,
`looterGuid` INT unsigned NOT NULL,
`lootThreshold` TINYINT unsigned NOT NULL,
`icon1` BIGINT unsigned NOT NULL,
`icon2` BIGINT unsigned NOT NULL,
`icon3` BIGINT unsigned NOT NULL,
`icon4` BIGINT unsigned NOT NULL,
`icon5` BIGINT unsigned NOT NULL,
`icon6` BIGINT unsigned NOT NULL,
`icon7` BIGINT unsigned NOT NULL,
`icon8` BIGINT unsigned NOT NULL,
`groupType` TINYINT unsigned NOT NULL,
`difficulty` TINYINT unsigned NOT NULL DEFAULT 0,
`raidDifficulty` TINYINT unsigned NOT NULL DEFAULT 0,
`masterLooterGuid` INT unsigned NOT NULL,
`guid` int unsigned NOT NULL,
`leaderGuid` int unsigned NOT NULL,
`lootMethod` tinyint unsigned NOT NULL,
`looterGuid` int unsigned NOT NULL,
`lootThreshold` tinyint unsigned NOT NULL,
`icon1` bigint unsigned NOT NULL,
`icon2` bigint unsigned NOT NULL,
`icon3` bigint unsigned NOT NULL,
`icon4` bigint unsigned NOT NULL,
`icon5` bigint unsigned NOT NULL,
`icon6` bigint unsigned NOT NULL,
`icon7` bigint unsigned NOT NULL,
`icon8` bigint unsigned NOT NULL,
`groupType` tinyint unsigned NOT NULL,
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
`raidDifficulty` tinyint unsigned NOT NULL DEFAULT '0',
`masterLooterGuid` int unsigned NOT NULL,
PRIMARY KEY (`guid`),
KEY `leaderGuid` (`leaderGuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Groups';