Oto, co uwzględniłbyś w tabeli komponentów.
CREATE TABLE `components` (
`id` int(10) unsigned NOT NULL auto_increment,
`typeId` int(10) unsigned NOT NULL,
`moreInfo` VARCHAR(32),
-- etc
PRIMARY KEY (`id`),
KEY `type` (`typeId`)
CONSTRAINT `myForeignKey` FOREIGN KEY (`typeId`)
REFERENCES `types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
)
Pamiętaj tylko, że musisz użyć silnika pamięci InnoDB:domyślny silnik pamięci MyISAM nie obsługuje kluczy obcych.