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,13 +15,13 @@
-- Dumpar struktur för tabell acore_characters.arena_team_member
DROP TABLE IF EXISTS `arena_team_member`;
CREATE TABLE IF NOT EXISTS `arena_team_member` (
`arenaTeamId` INT unsigned NOT NULL DEFAULT 0,
`guid` INT unsigned NOT NULL DEFAULT 0,
`weekGames` SMALLINT unsigned NOT NULL DEFAULT 0,
`weekWins` SMALLINT unsigned NOT NULL DEFAULT 0,
`seasonGames` SMALLINT unsigned NOT NULL DEFAULT 0,
`seasonWins` SMALLINT unsigned NOT NULL DEFAULT 0,
`personalRating` SMALLINT NOT NULL DEFAULT 0,
`arenaTeamId` int unsigned NOT NULL DEFAULT '0',
`guid` int unsigned NOT NULL DEFAULT '0',
`weekGames` smallint unsigned NOT NULL DEFAULT '0',
`weekWins` smallint unsigned NOT NULL DEFAULT '0',
`seasonGames` smallint unsigned NOT NULL DEFAULT '0',
`seasonWins` smallint unsigned NOT NULL DEFAULT '0',
`personalRating` smallint NOT NULL DEFAULT '0',
PRIMARY KEY (`arenaTeamId`,`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;