copy.setCheckConstraint( column.getCheckConstraint() );
copy.setComment( column.getComment() );
copy.setDefaultValue( column.getDefaultValue() );
key.addColumn( copy );
}
join.createPrimaryKey();
join.createForeignKey();
persistentClass.addJoin( join );
return join;
}
}