Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/IdBagAction_hsqldb_h_o_hibernate.hbm.xml')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/IdBagAction_hsqldb_h_o_hibernate.hbm.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/IdBagAction_hsqldb_h_o_hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/IdBagAction_hsqldb_h_o_hibernate.hbm.xml
index 440abd93f..7e19738d7 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/IdBagAction_hsqldb_h_o_hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/IdBagAction_hsqldb_h_o_hibernate.hbm.xml
@@ -39,7 +39,7 @@
<collection-id column="ID" type="long">
<generator class="increment"/>
</collection-id>
- <key update="true">
+ <key foreign-key="USER_ROLES_KEY" update="true">
<column name="`USER_ROLES_E_ID`" unique="false"/>
</key>
<element type="java.lang.String"/>
@@ -48,7 +48,7 @@
<collection-id column="ID" type="long">
<generator class="increment"/>
</collection-id>
- <key update="true" foreign-key="USER_ADDRESSES">
+ <key foreign-key="USER_ADDRESSES_KEY" update="true">
<column name="`USER_ADDRESSES_E_ID`" unique="false"/>
</key>
<many-to-many entity-name="Address"/>
@@ -187,14 +187,14 @@
<column not-null="false" unique="false" name="`NAME`"/>
</property>
<list name="roles" table="`USERAUDITING_ROLESAUDITING`" lazy="true" cascade="all">
- <key update="true">
+ <key foreign-key="USERAUDITING_ROLES_KEY" update="true">
<column name="`USERAUDITING_ROLES_TENEO_AUDIT_ID`" unique="false"/>
</key>
<list-index column="`USERAUDITING_ROLES_IDX`"/>
<element type="java.lang.String"/>
</list>
<list name="addresses" table="`USERAUDITING_ADDRESSESAUDITING`" lazy="true" cascade="all">
- <key update="true">
+ <key foreign-key="USERAUDITING_ADDRESSES_KEY" update="true">
<column name="`USERAUDITING_ADDRESSES_TENEO_AUDIT_ID`" unique="false"/>
</key>
<list-index column="`USERAUDITING_ADDRESSES_IDX`"/>

Back to the top