Hi!
I have a Problem within the generated ddl code when it comes to foreign keys referencing a group of columns
(here's an example):

As you can see, I want to create a foreign key relationsship
for sonID and fatherID, each referencing the columngroup
(maleID, familyID). So here it is for the father FK:

Up to here everything seems fine.
But when I generate the ddl code I get this result:
-----------------------------
ALTER TABLE isFatherOf ADD CONSTRAINT FK_isFatherOf_maleMembersOfFamily_father
FOREIGN KEY (fatherID, familyID) REFERENCES maleMembersOfFamily (, familyID)
;
------------------------------
But instead it should be
-----------------------------
ALTER TABLE isFatherOf ADD CONSTRAINT FK_isFatherOf_maleMembersOfFamily_father
FOREIGN KEY (fatherID, familyID) REFERENCES maleMembersOfFamily (maleID, familyID)
;
------------------------------
Is it up to me, do I anything wrong, or does it seem to be a bug of EA?
(btw I'm using Program version 6.0.781)
thanks ahead
joshua