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,16 +15,16 @@
-- Dumpar struktur för tabell acore_characters.log_arena_memberstats
DROP TABLE IF EXISTS `log_arena_memberstats`;
CREATE TABLE IF NOT EXISTS `log_arena_memberstats` (
`fight_id` INT unsigned NOT NULL,
`member_id` TINYINT unsigned NOT NULL,
`fight_id` int unsigned NOT NULL,
`member_id` tinyint unsigned NOT NULL,
`name` char(20) NOT NULL,
`guid` INT unsigned NOT NULL,
`team` INT unsigned NOT NULL,
`account` INT unsigned NOT NULL,
`guid` int unsigned NOT NULL,
`team` int unsigned NOT NULL,
`account` int unsigned NOT NULL,
`ip` char(15) NOT NULL,
`damage` INT unsigned NOT NULL,
`heal` INT unsigned NOT NULL,
`kblows` INT unsigned NOT NULL,
`damage` int unsigned NOT NULL,
`heal` int unsigned NOT NULL,
`kblows` int unsigned NOT NULL,
PRIMARY KEY (`fight_id`,`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;