123456789 |
- -- ---------------------------
- -- Table structure for character_recipebook
- -- ---------------------------
- CREATE TABLE IF NOT EXISTS `character_recipebook` (
- `charId` INT UNSIGNED NOT NULL default 0,
- `id` decimal(11) NOT NULL default 0,
- `type` INT NOT NULL default 0,
- PRIMARY KEY (`id`,`charId`)
- );
|