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,11 +15,11 @@
-- Dumpar struktur för tabell acore_world.quest_request_items
DROP TABLE IF EXISTS `quest_request_items`;
CREATE TABLE IF NOT EXISTS `quest_request_items` (
`ID` MEDIUMINT unsigned NOT NULL DEFAULT 0,
`EmoteOnComplete` SMALLINT unsigned NOT NULL DEFAULT 0,
`EmoteOnIncomplete` SMALLINT unsigned NOT NULL DEFAULT 0,
`ID` mediumint unsigned NOT NULL DEFAULT '0',
`EmoteOnComplete` smallint unsigned NOT NULL DEFAULT '0',
`EmoteOnIncomplete` smallint unsigned NOT NULL DEFAULT '0',
`CompletionText` text,
`VerifiedBuild` INT NOT NULL DEFAULT 0,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;