[seam-commits] Seam SVN: r8020 - branches/Seam_2_0.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Apr 25 03:34:46 EDT 2008
Author: dan.j.allen
Date: 2008-04-25 03:34:46 -0400 (Fri, 25 Apr 2008)
New Revision: 8020
Modified:
branches/Seam_2_0/release-process.txt
Log:
fix foreign key in table create statement
Modified: branches/Seam_2_0/release-process.txt
===================================================================
--- branches/Seam_2_0/release-process.txt 2008-04-24 22:14:56 UTC (rev 8019)
+++ branches/Seam_2_0/release-process.txt 2008-04-25 07:34:46 UTC (rev 8020)
@@ -244,7 +244,7 @@
`birthdate` date default NULL,
`address` varchar(600) NOT NULL,
PRIMARY KEY (`username`)
-) ENGINE=InnoDB
+) ENGINE=InnoDB;
CREATE TABLE `Vehicle` (
`ownerUsername` varchar(10) default NULL,
@@ -255,8 +255,8 @@
`state` varchar(2) NOT NULL,
PRIMARY KEY USING BTREE (`registration`,`state`),
KEY `ownerUsername` (`ownerUsername`),
- CONSTRAINT `owner` FOREIGN KEY (`ownerUsername`) REFERENCES `person` (`username`)
-) ENGINE=InnoDB
+ CONSTRAINT `owner` FOREIGN KEY (`ownerUsername`) REFERENCES `Person` (`username`)
+) ENGINE=InnoDB;
* seam-gen review seam-gen chapter of the reference guide
- accurate and up to date
More information about the seam-commits
mailing list