mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
point in time update of NHibernate Asset Mapping code
This commit is contained in:
16
OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml
Normal file
16
OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
||||
<class name="OpenSim.Framework.AssetBase, OpenSim.Framework" table="Assets">
|
||||
<id name="ID" column="UUID" type="String" length="36" >
|
||||
<generator class="assigned" />
|
||||
</id>
|
||||
<property name="Type" type="integer" />
|
||||
<property name="InvType" type="integer" />
|
||||
<property name="Name" type="String" length="50" />
|
||||
<property name="Description" type="String" length="50" />
|
||||
<property name="Local" type="boolean" />
|
||||
<property name="Temporary" type="boolean" />
|
||||
<property name="Data" type="binary" />
|
||||
|
||||
</class>
|
||||
</hibernate-mapping>
|
||||
Reference in New Issue
Block a user