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/SecondarytableHibernateAction_mysql_a_o_hibernate.hbm.xml')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/SecondarytableHibernateAction_mysql_a_o_hibernate.hbm.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/SecondarytableHibernateAction_mysql_a_o_hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/SecondarytableHibernateAction_mysql_a_o_hibernate.hbm.xml
index 42e947c5e..7e4781bf9 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/SecondarytableHibernateAction_mysql_a_o_hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/SecondarytableHibernateAction_mysql_a_o_hibernate.hbm.xml
@@ -16,13 +16,17 @@
<column not-null="true" unique="false" name="`NAME`"/>
</property>
<join table="`PERSON_ADDRESS`">
- <key column="`ID`"/>
+ <key>
+ <column name="`ID`"/>
+ </key>
<property name="address" lazy="false" insert="true" update="true" not-null="false" unique="false" type="text">
<column not-null="false" unique="false" name="`ADDRESS`"/>
</property>
</join>
<join table="`PERSON_PHOTO`">
- <key column="`ID`"/>
+ <key>
+ <column name="`ID`"/>
+ </key>
<property name="photo" lazy="false" insert="true" update="true" not-null="false" unique="false" type="binary">
<column not-null="false" unique="false" name="`PHOTO`" length="1000000"/>
</property>

Back to the top