diff options
author | Sean Dague | 2008-04-03 12:29:25 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-03 12:29:25 +0000 |
commit | fe14d65f07b453b079aee1fe5ae17cfe7d6cb855 (patch) | |
tree | ee8a561b95bf7bd20fc6c77208bc832d2e35f12e /OpenSim/Data/NHibernate/Resources | |
parent | * ODEPlugin: put a limit on the minimum size a prim can be ( scale <=0 ). (diff) | |
download | opensim-SC_OLD-fe14d65f07b453b079aee1fe5ae17cfe7d6cb855.zip opensim-SC_OLD-fe14d65f07b453b079aee1fe5ae17cfe7d6cb855.tar.gz opensim-SC_OLD-fe14d65f07b453b079aee1fe5ae17cfe7d6cb855.tar.bz2 opensim-SC_OLD-fe14d65f07b453b079aee1fe5ae17cfe7d6cb855.tar.xz |
point in time update of NHibernate Asset Mapping code
Diffstat (limited to 'OpenSim/Data/NHibernate/Resources')
-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 | ||