diff options
author | Sean Dague | 2008-04-08 03:09:56 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-08 03:09:56 +0000 |
commit | 61daaa57a94536318f0a56793935720fe3f6071d (patch) | |
tree | 92bfae26131635f9001efb8a3864b9b0125a04de | |
parent | attempt to introduce custom LLUUIDString type for (diff) | |
download | opensim-SC_OLD-61daaa57a94536318f0a56793935720fe3f6071d.zip opensim-SC_OLD-61daaa57a94536318f0a56793935720fe3f6071d.tar.gz opensim-SC_OLD-61daaa57a94536318f0a56793935720fe3f6071d.tar.bz2 opensim-SC_OLD-61daaa57a94536318f0a56793935720fe3f6071d.tar.xz |
added mapping for InventoryItemBase
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/NHibernate/Resources/InventoryItemBase.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Data/NHibernate/Resources/InventoryItemBase.xml b/OpenSim/Data/NHibernate/Resources/InventoryItemBase.xml new file mode 100644 index 0000000..ba1dda4 --- /dev/null +++ b/OpenSim/Data/NHibernate/Resources/InventoryItemBase.xml | |||
@@ -0,0 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> | ||
3 | <class name="OpenSim.Framework.InventoryItemBase, OpenSim.Framework" table="InventoryItems" lazy="false"> | ||
4 | <id name="ID" type="OpenSim.Data.NHibernate.LLUUIDString"> | ||
5 | <generator class="assigned" /> | ||
6 | </id> | ||
7 | <property name="InvType" type="int" /> | ||
8 | <property name="AssetType" type="int" /> | ||
9 | <property name="AssetID" type="OpenSim.Data.NHibernate.LLUUIDString" /> | ||
10 | <property name="Folder" type="OpenSim.Data.NHibernate.LLUUIDString" /> | ||
11 | <property name="Owner" type="OpenSim.Data.NHibernate.LLUUIDString" /> | ||
12 | <property name="Creator" type="OpenSim.Data.NHibernate.LLUUIDString" /> | ||
13 | <property name="Name" type="String" length="64" /> | ||
14 | <property name="Description" type="String" length="64" /> | ||
15 | <property name="NextPermissions" type="uint" /> | ||
16 | <property name="CurrentPermissions" type="uint" /> | ||
17 | <property name="BasePermissions" type="uint" /> | ||
18 | <property name="EveryOnePermissions" type="uint" /> | ||
19 | </class> | ||
20 | </hibernate-mapping> \ No newline at end of file | ||