Database definition update to include the new caused by user id in notification data table.

This commit is contained in:
Andreas Svanberg 2013-02-19 15:50:22 +01:00
parent 408cc0a0b7
commit ddafeb6b8a

@ -19,3 +19,7 @@ ALTER TABLE `applicationperiodexemption`
ADD CONSTRAINT `FKCB7E71913353DC5C` FOREIGN KEY (`studentId`) REFERENCES `role` (`id`);
ALTER TABLE `project` ADD COLUMN `externalOrganization` varchar(255) DEFAULT NULL;
ALTER TABLE `NotificationData`
ADD COLUMN `causedBy_id` bigint(20) DEFAULT NULL,
ADD CONSTRAINT `FK2DCAC355B2E2AD78` FOREIGN KEY (`causedBy_id`) REFERENCES `user` (`id`);