diff options
author | Sean Dague | 2008-07-07 21:50:45 +0000 |
---|---|---|
committer | Sean Dague | 2008-07-07 21:50:45 +0000 |
commit | 19c4c9798bcefd71f6b974df03026dee1f62c21e (patch) | |
tree | d57d509f9a7bab1f6e4bde3110dbfd4c07ce6623 /OpenSim/Data | |
parent | add NHPrim to subclass SOP so we can stick region uuid in there. (diff) | |
download | opensim-SC_OLD-19c4c9798bcefd71f6b974df03026dee1f62c21e.zip opensim-SC_OLD-19c4c9798bcefd71f6b974df03026dee1f62c21e.tar.gz opensim-SC_OLD-19c4c9798bcefd71f6b974df03026dee1f62c21e.tar.bz2 opensim-SC_OLD-19c4c9798bcefd71f6b974df03026dee1f62c21e.tar.xz |
changes to use NHPrim instead of SOP directly
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml b/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml index a443a8f..8bd9589 100644 --- a/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml +++ b/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | |||
@@ -1,10 +1,11 @@ | |||
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.Region.Environment.Scenes.SceneObjectPart, OpenSim.Region.Environment" table="Prims" lazy="false"> | 3 | <class name="OpenSim.Data.NHibernate.NHPrim, OpenSim.Data.NHibernate" 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="System.UInt32" /> |
8 | <property name="RegionID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" /> | ||
8 | <property name="CreationDate" type="System.Int32" /> | 9 | <property name="CreationDate" type="System.Int32" /> |
9 | <property name="Name" type="String" length="255" /> | 10 | <property name="Name" type="String" length="255" /> |
10 | <property name="Text" type="String" length="255" /> | 11 | <property name="Text" type="String" length="255" /> |