custom_npcskills.sql 292 B

123456
  1. CREATE TABLE IF NOT EXISTS `custom_npcskills` (
  2. `npcid` smallint(5) unsigned NOT NULL DEFAULT '0',
  3. `skillid` smallint(5) unsigned NOT NULL DEFAULT '0',
  4. `level` tinyint(2) unsigned NOT NULL DEFAULT '0',
  5. PRIMARY KEY (`npcid`,`skillid`,`level`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;