1
CREATE TABLE `instrument_relation` (
2
`pfk-source_instrument_id` int(10) unsigned NOT NULL,
3
`pfk-related_instrument_id` int(10) unsigned NOT NULL,
4
`sort_order` int(11) NOT NULL,
5
PRIMARY KEY (`pfk-source_instrument_id`,`pfk-related_instrument_id`),
6
KEY `sort_order` (`sort_order`)
7
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci