diff options
author | Sean Dague | 2008-07-16 14:40:19 +0000 |
---|---|---|
committer | Sean Dague | 2008-07-16 14:40:19 +0000 |
commit | 309e479ac4d15e84286e91408555464c7653eb0c (patch) | |
tree | 721b790e670c75c52c0b3ba224aa44beacc016cc /OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | |
parent | Mantis#1755. Thank you kindly, Matth for a patch that solves: (diff) | |
download | opensim-SC_OLD-309e479ac4d15e84286e91408555464c7653eb0c.zip opensim-SC_OLD-309e479ac4d15e84286e91408555464c7653eb0c.tar.gz opensim-SC_OLD-309e479ac4d15e84286e91408555464c7653eb0c.tar.bz2 opensim-SC_OLD-309e479ac4d15e84286e91408555464c7653eb0c.tar.xz |
work in progress on nhibernate
Diffstat (limited to 'OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml')
-rw-r--r-- | OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml b/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml index 8bd9589..3a7d692 100644 --- a/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml +++ b/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | 1 | <?xml version="1.0" encoding="utf-8" ?> |
2 | <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> | 2 | <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> |
3 | <class name="OpenSim.Data.NHibernate.NHPrim, OpenSim.Data.NHibernate" table="Prims" lazy="false"> | 3 | <class name="OpenSim.Region.Environment.Scene.SceneObjectPart, OpenSim.Region.Environment.Scene" table="Prims" lazy="false"> |
4 | <id name="UUID" column="ID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"> | 4 | <id name="UUID" column="ID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"> |
5 | <generator class="assigned" /> | 5 | <generator class="assigned" /> |
6 | </id> | 6 | </id> |
7 | <property name="ParentID" type="System.UInt32" /> | 7 | <property name="ParentID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" /> |
8 | <property name="RegionID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" /> | 8 | <property name="RegionID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" /> |
9 | <property name="CreationDate" type="System.Int32" /> | 9 | <property name="CreationDate" type="System.Int32" /> |
10 | <property name="Name" type="String" length="255" /> | 10 | <property name="Name" type="String" length="255" /> |
@@ -75,4 +75,10 @@ | |||
75 | <column name="SitTargetOrientW" /> | 75 | <column name="SitTargetOrientW" /> |
76 | </property> | 76 | </property> |
77 | </class> | 77 | </class> |
78 | |||
79 | <class name="OpenSim.Framework.PrimitiveBaseShape, OpenSim.Framework" table="PrimShapes" lazy="false"> | ||
80 | <id name="UUID" column="ID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"> | ||
81 | <generator class="assigned" /> | ||
82 | </id> | ||
83 | </class> | ||
78 | </hibernate-mapping> \ No newline at end of file | 84 | </hibernate-mapping> \ No newline at end of file |