mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
added mapping for InventoryItemBase
This commit is contained in:
20
OpenSim/Data/NHibernate/Resources/InventoryItemBase.xml
Normal file
20
OpenSim/Data/NHibernate/Resources/InventoryItemBase.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
||||
<class name="OpenSim.Framework.InventoryItemBase, OpenSim.Framework" table="InventoryItems" lazy="false">
|
||||
<id name="ID" type="OpenSim.Data.NHibernate.LLUUIDString">
|
||||
<generator class="assigned" />
|
||||
</id>
|
||||
<property name="InvType" type="int" />
|
||||
<property name="AssetType" type="int" />
|
||||
<property name="AssetID" type="OpenSim.Data.NHibernate.LLUUIDString" />
|
||||
<property name="Folder" type="OpenSim.Data.NHibernate.LLUUIDString" />
|
||||
<property name="Owner" type="OpenSim.Data.NHibernate.LLUUIDString" />
|
||||
<property name="Creator" type="OpenSim.Data.NHibernate.LLUUIDString" />
|
||||
<property name="Name" type="String" length="64" />
|
||||
<property name="Description" type="String" length="64" />
|
||||
<property name="NextPermissions" type="uint" />
|
||||
<property name="CurrentPermissions" type="uint" />
|
||||
<property name="BasePermissions" type="uint" />
|
||||
<property name="EveryOnePermissions" type="uint" />
|
||||
</class>
|
||||
</hibernate-mapping>
|
||||
Reference in New Issue
Block a user