character_summons.sql 345 B

12345678
  1. CREATE TABLE IF NOT EXISTS `character_summons` (
  2. `ownerId` int(10) unsigned NOT NULL,
  3. `summonSkillId` int(10) unsigned NOT NULL,
  4. `curHp` int(9) unsigned DEFAULT '0',
  5. `curMp` int(9) unsigned DEFAULT '0',
  6. `time` int(10) unsigned NOT NULL DEFAULT '0',
  7. PRIMARY KEY (`ownerId`,`summonSkillId`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;