feat(DB): release ACDB 7.0.0 (#12811)
* feat(DB): release ACDB 7.0.0 * cleanup * we try sourcery
This commit is contained in:
parent
4cd3b9c203
commit
3daa8e2146
739 changed files with 197091 additions and 167873 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue