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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
739 changed files with 197091 additions and 167873 deletions

View file

@ -15,17 +15,17 @@
-- Dumpar struktur för tabell acore_world.battleground_template
DROP TABLE IF EXISTS `battleground_template`;
CREATE TABLE IF NOT EXISTS `battleground_template` (
`ID` MEDIUMINT unsigned NOT NULL DEFAULT 0,
`MinPlayersPerTeam` SMALLINT unsigned NOT NULL DEFAULT 0,
`MaxPlayersPerTeam` SMALLINT unsigned NOT NULL DEFAULT 0,
`MinLvl` TINYINT unsigned NOT NULL DEFAULT 0,
`MaxLvl` TINYINT unsigned NOT NULL DEFAULT 0,
`AllianceStartLoc` MEDIUMINT unsigned NOT NULL,
`ID` mediumint unsigned NOT NULL DEFAULT '0',
`MinPlayersPerTeam` smallint unsigned NOT NULL DEFAULT '0',
`MaxPlayersPerTeam` smallint unsigned NOT NULL DEFAULT '0',
`MinLvl` tinyint unsigned NOT NULL DEFAULT '0',
`MaxLvl` tinyint unsigned NOT NULL DEFAULT '0',
`AllianceStartLoc` mediumint unsigned NOT NULL,
`AllianceStartO` float NOT NULL,
`HordeStartLoc` MEDIUMINT unsigned NOT NULL,
`HordeStartLoc` mediumint unsigned NOT NULL,
`HordeStartO` float NOT NULL,
`StartMaxDist` float NOT NULL DEFAULT 0,
`Weight` TINYINT unsigned NOT NULL DEFAULT 1,
`StartMaxDist` float NOT NULL DEFAULT '0',
`Weight` tinyint unsigned NOT NULL DEFAULT '1',
`ScriptName` char(64) NOT NULL DEFAULT '',
`Comment` char(38) NOT NULL,
PRIMARY KEY (`ID`)