No table for supervisors that are interested in handling different project ideas.

This commit is contained in:
Tom Vahlman 2012-03-23 14:08:04 +01:00
parent 4a145b9034
commit 5d64fb8b42

@ -0,0 +1,8 @@
CREATE TABLE `projectIdea_Employee` (
`projectIdea_id` bigint(20) NOT NULL,
`supervisorInterest_id` bigint(20) NOT NULL,
KEY `FK485C987D4E31D7A1` (`projectIdea_id`),
KEY `FK485C987DBB2259FB` (`supervisorInterest_id`),
CONSTRAINT `FK485C987DBB2259FB` FOREIGN KEY (`supervisorInterest_id`) REFERENCES `role` (`id`),
CONSTRAINT `FK485C987D4E31D7A1` FOREIGN KEY (`projectIdea_id`) REFERENCES `projectIdea` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1