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_world.npc_trainer
DROP TABLE IF EXISTS `npc_trainer`;
CREATE TABLE IF NOT EXISTS `npc_trainer` (
`ID` MEDIUMINT unsigned NOT NULL DEFAULT 0,
`SpellID` MEDIUMINT NOT NULL DEFAULT 0,
`MoneyCost` INT unsigned NOT NULL DEFAULT 0,
`ReqSkillLine` SMALLINT unsigned NOT NULL DEFAULT 0,
`ReqSkillRank` SMALLINT unsigned NOT NULL DEFAULT 0,
`ReqLevel` TINYINT unsigned NOT NULL DEFAULT 0,
`ReqSpell` INT unsigned NOT NULL DEFAULT 0,
`ID` mediumint unsigned NOT NULL DEFAULT '0',
`SpellID` mediumint NOT NULL DEFAULT '0',
`MoneyCost` int unsigned NOT NULL DEFAULT '0',
`ReqSkillLine` smallint unsigned NOT NULL DEFAULT '0',
`ReqSkillRank` smallint unsigned NOT NULL DEFAULT '0',
`ReqLevel` tinyint unsigned NOT NULL DEFAULT '0',
`ReqSpell` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`SpellID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;