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,14 +15,14 @@
-- Dumpar struktur för tabell acore_characters.quest_tracker
DROP TABLE IF EXISTS `quest_tracker`;
CREATE TABLE IF NOT EXISTS `quest_tracker` (
`id` MEDIUMINT unsigned NOT NULL DEFAULT 0,
`character_guid` INT unsigned NOT NULL DEFAULT 0,
`id` mediumint unsigned NOT NULL DEFAULT '0',
`character_guid` int unsigned NOT NULL DEFAULT '0',
`quest_accept_time` datetime NOT NULL,
`quest_complete_time` datetime DEFAULT NULL,
`quest_abandon_time` datetime DEFAULT NULL,
`completed_by_gm` TINYINT NOT NULL DEFAULT 0,
`core_hash` VARCHAR(120) NOT NULL DEFAULT 0,
`core_revision` VARCHAR(120) NOT NULL DEFAULT 0
`completed_by_gm` tinyint NOT NULL DEFAULT '0',
`core_hash` varchar(120) NOT NULL DEFAULT '0',
`core_revision` varchar(120) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumpar data för tabell acore_characters.quest_tracker: ~0 rows (ungefär)