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.schemaconstructs.RestrictionAction/mysql_a_o/hibernate.hbm.xml')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.schemaconstructs.RestrictionAction/mysql_a_o/hibernate.hbm.xml22
1 files changed, 16 insertions, 6 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.schemaconstructs.RestrictionAction/mysql_a_o/hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.schemaconstructs.RestrictionAction/mysql_a_o/hibernate.hbm.xml
index ba6295c05..be192a9d1 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.schemaconstructs.RestrictionAction/mysql_a_o/hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.schemaconstructs.RestrictionAction/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 Sun Nov 12 00:57:47 CET 2006 -->
+<!-- Generated by Teneo on Mon Nov 13 15:29:09 CET 2006 -->
<hibernate-mapping>
<class entity-name="XMLDeviant" abstract="false" lazy="false" discriminator-value="XMLDeviant" table="`xmldeviant`">
<meta attribute="eclassName">XMLDeviant</meta>
@@ -14,11 +14,21 @@
<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler">
<meta attribute="syntheticVersion">true</meta>
</version>
- <property name="numPosts" type="java.math.BigInteger" lazy="false" column="`numposts`" not-null="false"/>
- <property name="signature" type="java.lang.String" lazy="false" column="`signature`" not-null="false"/>
- <property name="email" type="java.lang.String" lazy="false" column="`email`" not-null="false"/>
- <property name="firstSubscribed" type="serializable" lazy="false" column="`firstsubscribed`" not-null="false"/>
- <property name="mailReader" type="java.lang.String" lazy="false" column="`mailreader`" not-null="false"/>
+ <property name="numPosts" type="java.math.BigInteger" lazy="false" not-null="false">
+ <column not-null="false" unique="false" name="`numposts`"/>
+ </property>
+ <property name="signature" type="java.lang.String" lazy="false" not-null="false">
+ <column not-null="false" unique="false" name="`signature`"/>
+ </property>
+ <property name="email" type="java.lang.String" lazy="false" not-null="false">
+ <column not-null="false" unique="false" name="`email`"/>
+ </property>
+ <property name="firstSubscribed" type="serializable" lazy="false" not-null="false">
+ <column not-null="false" unique="false" name="`firstsubscribed`"/>
+ </property>
+ <property name="mailReader" type="java.lang.String" lazy="false" not-null="false">
+ <column not-null="false" unique="false" name="`mailreader`"/>
+ </property>
</class>
<subclass entity-name="Member" abstract="false" lazy="false" extends="XMLDeviant" discriminator-value="Member">
<meta attribute="eclassName">Member</meta>

Back to the top