diff options
author | Sean Dague | 2008-07-23 22:14:29 +0000 |
---|---|---|
committer | Sean Dague | 2008-07-23 22:14:29 +0000 |
commit | cf317f5c3352f066fd61a0fa5de19c93947be22c (patch) | |
tree | 2decd9652f6270789713f98b2ac550395b125c08 /OpenSim/Data/NHibernate | |
parent | add primitems migration for nhibernate (diff) | |
download | opensim-SC_OLD-cf317f5c3352f066fd61a0fa5de19c93947be22c.zip opensim-SC_OLD-cf317f5c3352f066fd61a0fa5de19c93947be22c.tar.gz opensim-SC_OLD-cf317f5c3352f066fd61a0fa5de19c93947be22c.tar.bz2 opensim-SC_OLD-cf317f5c3352f066fd61a0fa5de19c93947be22c.tar.xz |
refactor TaskInventoryItem Mask -> Permissions to be consistant with how things
are stored in the db.
Diffstat (limited to 'OpenSim/Data/NHibernate')
-rw-r--r-- | OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml b/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml index 9fc8065..00bf841 100644 --- a/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml +++ b/OpenSim/Data/NHibernate/Resources/RegionStore.hbm.xml | |||
@@ -110,4 +110,21 @@ | |||
110 | </id> | 110 | </id> |
111 | <property name="Map" type="System.Byte[]" /> | 111 | <property name="Map" type="System.Byte[]" /> |
112 | </class> | 112 | </class> |
113 | <class name="OpenSim.Framework.TaskInventoryItem, OpenSim.Framework" table="PrimItems" lazy="false"> | ||
114 | <id name="ItemID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"> | ||
115 | <generator class="assigned" /> | ||
116 | </id> | ||
117 | <property name="PrimID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
118 | <property name="AssetID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
119 | <property name="ParentFolderID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
120 | <property name="CreatorID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
121 | <property name="OwnerID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
122 | <property name="GroupID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
123 | <property name="LastOwnerID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate"/> | ||
124 | <property name="CurrentPermissions" type="System.UInt32" /> | ||
125 | <property name="BasePermissions" type="System.UInt32" /> | ||
126 | <property name="EveryonePermissions" type="System.UInt32" /> | ||
127 | <property name="GroupPermissions" type="System.UInt32" /> | ||
128 | <property name="NextPermissions" type="System.UInt32" /> | ||
129 | </class> | ||
113 | </hibernate-mapping> \ No newline at end of file | 130 | </hibernate-mapping> \ No newline at end of file |