character_recipebook.sql 306 B

123456789
  1. -- ---------------------------
  2. -- Table structure for character_recipebook
  3. -- ---------------------------
  4. CREATE TABLE IF NOT EXISTS `character_recipebook` (
  5. `charId` INT UNSIGNED NOT NULL default 0,
  6. `id` decimal(11) NOT NULL default 0,
  7. `type` INT NOT NULL default 0,
  8. PRIMARY KEY (`id`,`charId`)
  9. );