Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.detach.DetachEListAction/mysql_a_o/hibernate.hbm.xml')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.detach.DetachEListAction/mysql_a_o/hibernate.hbm.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.detach.DetachEListAction/mysql_a_o/hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.detach.DetachEListAction/mysql_a_o/hibernate.hbm.xml
index 1681e346f..00b073640 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.detach.DetachEListAction/mysql_a_o/hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.detach.DetachEListAction/mysql_a_o/hibernate.hbm.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
-<!-- Generated by Teneo on Thu Sep 28 21:18:12 CEST 2006 -->
+<!-- Generated by Teneo on Fri Sep 29 13:48:02 CEST 2006 -->
<hibernate-mapping>
<class entity-name="Contacts" abstract="false" lazy="false" discriminator-value="Contacts" table="`contacts`">
<id type="long" name="e_id" column="e_id">
@@ -11,14 +11,14 @@
<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
<list name="persons" lazy="true" cascade="merge,persist,save-update,lock,refresh">
<key update="true">
- <column name="`persons_id`" not-null="false" unique="false"/>
+ <column name="`contacts_persons_id`" not-null="false" unique="false"/>
</key>
<list-index column="`contacts_persons_idx`"/>
<one-to-many entity-name="Person"/>
</list>
<list name="containedPersons" lazy="true" cascade="all,delete-orphan">
<key update="true">
- <column name="`containedpersons_id`" not-null="false" unique="false"/>
+ <column name="`contacts_containedpersons_id`" not-null="false" unique="false"/>
</key>
<list-index column="`contacts_containedpersons_idx`"/>
<one-to-many entity-name="Person"/>
@@ -33,7 +33,7 @@
<property name="name" type="java.lang.String" lazy="false" column="`name`" not-null="true"/>
<list name="children" lazy="true" cascade="all,delete-orphan">
<key update="true">
- <column name="`children_id`" not-null="false" unique="false"/>
+ <column name="`person_children_id`" not-null="false" unique="false"/>
</key>
<list-index column="`person_children_idx`"/>
<one-to-many entity-name="Person"/>

Back to the top