mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
add user agent mapping
This commit is contained in:
21
OpenSim/Data/NHibernate/Resources/UserAgentData.hbm.xml
Normal file
21
OpenSim/Data/NHibernate/Resources/UserAgentData.hbm.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
||||
<class name="OpenSim.Framework.UserAgentData, OpenSim.Framework" table="Users" lazy="false">
|
||||
<id name="ProfileID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate">
|
||||
<generator class="assigned" />
|
||||
</id>
|
||||
<property name="AgentIP" type="String" length="24" />
|
||||
<property name="AgentPort" type="UInt32" />
|
||||
<property name="AgentOnline" type="bool" />
|
||||
<property name="SessionID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" />
|
||||
<property name="SecureSessionID" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" />
|
||||
<property name="InitialRegion" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" />
|
||||
<property name="Region" type="OpenSim.Data.NHibernate.LLUUIDUserType, OpenSim.Data.NHibernate" />
|
||||
<property name="LoginTime" type="Int32" />
|
||||
<property name="LogoutTime" type="Int32" />
|
||||
<property name="Handle" type="ulong" />
|
||||
<property name="PositionX" type="float" />
|
||||
<property name="PositionY" type="float" />
|
||||
<property name="PositionZ" type="float" />
|
||||
</class>
|
||||
</hibernate-mapping>
|
||||
Reference in New Issue
Block a user