rebuilding head
[mir.git] / source / mir / core / model / Feature.hbm.xml
diff --git a/source/mir/core/model/Feature.hbm.xml b/source/mir/core/model/Feature.hbm.xml
deleted file mode 100755 (executable)
index 5178f65..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE hibernate-mapping PUBLIC
-    "-//Hibernate/Hibernate Mapping DTD//EN"
-    "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >
-    
-<hibernate-mapping>
-
-<!-- 
-    Created by Middlegen Hibernate plugin
-
-    http://boss.bekk.no/boss/middlegen/
-    http://hibernate.sourceforge.net/
--->
-
-<class 
-    name="mir.core.model.Feature" 
-    table="feature"
->
-    <id
-        name="id"
-        type="int"
-        column="id"
-    >
-        <generator class="sequence">
-               <param name="sequence">feature_id_seq</param> 
-        </generator> 
-    </id>
-    <property
-        name="title"
-        type="java.lang.String"
-        column="title"
-        not-null="true"
-        length="80"
-    />
-    <property
-        name="description"
-        type="java.lang.String"
-        column="description"
-        sql-type="text" 
-    />
-    <property
-        name="filename"
-        type="java.lang.String"
-        column="filename"
-        not-null="true"
-        length="20"
-    />
-    <property
-        name="mainUrl"
-        type="java.lang.String"
-        column="main_url"
-        length="255"
-    />
-    <property
-        name="published"
-        type="boolean"
-        column="is_published"
-        not-null="true"
-        length="1"
-    />
-
-    <!-- associations -->
-
-</class>
-</hibernate-mapping>