This commit is contained in:
Socrates
2020-05-26 10:29:34 +02:00
commit 9ed0f2a056
1162 changed files with 162062 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping SYSTEM "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="org.openxava.session">
<class
name="GalleryImage"
table="IMAGES">
<id name="oid" column="ID" access="field">
<generator class="uuid"/>
</id>
<property name="galleryOid" column="GALLERY"/>
<property name="image" column="IMAGE" length="16777216"/>
</class>
</hibernate-mapping>