diff options
Diffstat (limited to 'OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml')
-rw-r--r-- | OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml b/OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml new file mode 100644 index 0000000..82c30fe --- /dev/null +++ b/OpenSim/Data/NHibernate/Resources/AssetBase.hbm.xml | |||
@@ -0,0 +1,16 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> | ||
3 | <class name="OpenSim.Framework.AssetBase, OpenSim.Framework" table="Assets"> | ||
4 | <id name="ID" column="UUID" type="String" length="36" > | ||
5 | <generator class="assigned" /> | ||
6 | </id> | ||
7 | <property name="Type" type="integer" /> | ||
8 | <property name="InvType" type="integer" /> | ||
9 | <property name="Name" type="String" length="50" /> | ||
10 | <property name="Description" type="String" length="50" /> | ||
11 | <property name="Local" type="boolean" /> | ||
12 | <property name="Temporary" type="boolean" /> | ||
13 | <property name="Data" type="binary" /> | ||
14 | |||
15 | </class> | ||
16 | </hibernate-mapping> \ No newline at end of file | ||