character_recipebook.sql 297 B

1234567
  1. CREATE TABLE IF NOT EXISTS `character_recipebook` (
  2. `charId` INT UNSIGNED NOT NULL DEFAULT 0,
  3. `id` decimal(11) NOT NULL DEFAULT 0,
  4. `classIndex` TINYINT NOT NULL DEFAULT 0,
  5. `type` INT NOT NULL DEFAULT 0,
  6. PRIMARY KEY (`id`,`charId`,`classIndex`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;